summaryrefslogtreecommitdiff
path: root/args.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-27 09:03:29 -0600
committerJeff Carr <[email protected]>2024-01-27 09:03:29 -0600
commita32edd610a8bde4e9528809e008ecd14bf433af3 (patch)
tree3471e90ba1d76ee6b273696044485e1e73a23d82 /args.go
parentdf97de0eb413297cd2aead322e46b80bcac8eaa6 (diff)
nocui works
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'args.go')
-rw-r--r--args.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/args.go b/args.go
index c00c0e3..88fcf53 100644
--- a/args.go
+++ b/args.go
@@ -21,10 +21,10 @@ func init() {
short := "nocui"
NOW = log.NewFlag("NOW", true, full, short, "temp debugging stuff")
- INFO = log.NewFlag("INFO", false, full, short, "normal debugging stuff")
+ INFO = log.NewFlag("INFO", true, full, short, "normal debugging stuff")
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")
+ ERROR = log.NewFlag("ERROR", true, full, short, "toolkit errors")
}