summaryrefslogtreecommitdiff
path: root/args.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-18 04:08:32 -0600
committerJeff Carr <[email protected]>2024-01-18 04:08:32 -0600
commit95b019ad2215c1192e3fd05608427e38ddadf092 (patch)
tree948f48e89d51d3da31c3d76577954881050164dc /args.go
parent66f87e34481df249b238d2b1490b6a0c1a3402e0 (diff)
pathsv0.0.2
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'args.go')
-rw-r--r--args.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/args.go b/args.go
index 4b6b38e..c00c0e3 100644
--- a/args.go
+++ b/args.go
@@ -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")