diff options
| author | Jeff Carr <[email protected]> | 2025-02-13 22:28:59 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-02-13 22:28:59 -0600 |
| commit | b64bf96606fbe0af5edbc3f23cab2e42eec4f28a (patch) | |
| tree | 429286b3c8583e29a88dd4aaedaac06086a436d8 /flags.go | |
| parent | a264a7d121a40f7a1827e5925bd20bcbfeacf63b (diff) | |
Diffstat (limited to 'flags.go')
| -rw-r--r-- | flags.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -21,9 +21,9 @@ func init() { short := "andlabs" 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", false, full, short, "bad things") + WARN = log.NewFlag("WARN", true, full, short, "bad things") full = "go.wit.com/gui" short = "andlabs" |
