summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
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()
}