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