diff options
| author | Jeff Carr <[email protected]> | 2024-01-18 01:33:28 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-18 01:33:28 -0600 |
| commit | f0b712faf865b460b8be7a9edfd78e1b3852cae5 (patch) | |
| tree | a20ae083ec79e99ba1c2cbe828edbee12c9d8911 /args.go | |
| parent | 586494505bb57aa1c4383641c6693a7021e1621d (diff) | |
fix pathsv0.12.3
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'args.go')
| -rw-r--r-- | args.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -18,11 +18,11 @@ func init() { full := "go.wit.com/gui/cloudflare" short := "cfgui" - 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, "general info") - 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") - CURL = log.NewFlag("CURL", true, full, short, "curl interactions") + CURL = log.NewFlag("CURL", true, full, short, "curl interactions") ZONE = log.NewFlag("ZONE", false, full, short, "zone details") } |
