diff options
| author | Jeff Carr <[email protected]> | 2024-01-18 04:08:32 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-18 04:08:32 -0600 |
| commit | 95b019ad2215c1192e3fd05608427e38ddadf092 (patch) | |
| tree | 948f48e89d51d3da31c3d76577954881050164dc /args.go | |
| parent | 66f87e34481df249b238d2b1490b6a0c1a3402e0 (diff) | |
pathsv0.0.2
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'args.go')
| -rw-r--r-- | args.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ package main this enables command line options from other packages like 'gui' and 'log' */ -import ( +import ( log "go.wit.com/log" ) @@ -20,10 +20,10 @@ func init() { full := "toolkit/nocui" short := "nocui" - NOW = log.NewFlag( "NOW", true, full, short, "temp debugging stuff") + NOW = log.NewFlag("NOW", true, full, short, "temp debugging stuff") INFO = log.NewFlag("INFO", false, full, short, "normal debugging stuff") - WARN = log.NewFlag("WARN", true, full, short, "bad things") + WARN = log.NewFlag("WARN", true, full, short, "bad things") SPEW = log.NewFlag("SPEW", false, full, short, "spew stuff") ERROR = log.NewFlag("ERROR", false, full, short, "toolkit errors") |
