diff options
Diffstat (limited to 'args.go')
| -rw-r--r-- | args.go | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -4,7 +4,7 @@ package repostatus this enables command line options from other packages like 'gui' and 'log' */ -import ( +import ( "go.wit.com/log" ) @@ -21,12 +21,12 @@ func init() { full := "go.wit.com/gui/gadgets/repostatus" short := "repostatus" - 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") - CHANGE = log.NewFlag("CHANGE", true, full, short, "when repo changes") + CHANGE = log.NewFlag("CHANGE", true, full, short, "when repo changes") STATUS = log.NewFlag("STATUS", false, full, short, "current status") } |
