diff options
| author | Jeff Carr <[email protected]> | 2024-02-16 20:37:23 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-02-16 20:37:23 -0600 |
| commit | 63a79121e3667ed84432b7bc9e3239cb62c059c8 (patch) | |
| tree | 10809e99bdd17512d9f8e050c69c894269be9796 /args.go | |
| parent | c253a30fb61cdc956e1cefb8296e34bf74ddf90c (diff) | |
trying to create branches
Diffstat (limited to 'args.go')
| -rw-r--r-- | args.go | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -9,6 +9,7 @@ package main import ( "go.wit.com/dev/alexflint/arg" "go.wit.com/lib/debugger" + "go.wit.com/lib/gui/logsettings" "go.wit.com/log" ) @@ -30,4 +31,12 @@ func init() { debugger.DebugWindow() }() } + if debugger.ArgLogger() { + log.Info("cmd line --loggger == true") + go func() { + log.Sleep(4) + logsettings.LogWindow() + logsettings.LogWindow() + }() + } } |
