summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-12 10:14:50 -0600
committerJeff Carr <[email protected]>2024-02-12 10:14:50 -0600
commitbc01313a04ddb0cfe5eae72a0e04995765a53c84 (patch)
tree3c4b6a8fb779eb2c61c6216137d697ba7ed89705 /main.go
parent0949113167e0b37a4ba35637c3f6f6a2d0d14e8d (diff)
use standard debugger.gov0.21.0v0.20.7v0.20.6v0.20.5v0.20.4
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'main.go')
-rw-r--r--main.go12
1 files changed, 0 insertions, 12 deletions
diff --git a/main.go b/main.go
index 25d9a58..2204571 100644
--- a/main.go
+++ b/main.go
@@ -27,24 +27,12 @@ func main() {
log.SetAll(true)
log.ShowFlags()
}
- if args.TmpLog {
- // send all log() output to a file in /tmp
- log.SetTmp()
- }
myGui = gui.New()
myGui.Default()
helloworld()
basicWindow = makebasicWindow()
- // run the debugger if triggered from the commandline
- if debugger.ArgDebug() {
- go func() {
- log.Sleep(2)
- debugger.DebugWindow()
- }()
- }
-
// go will sit here until the window exits
gui.Watchdog()
}