summaryrefslogtreecommitdiff
path: root/args.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-21 11:42:31 -0600
committerJeff Carr <[email protected]>2024-01-21 11:42:31 -0600
commit5eea7f505926031b77cc7832c6c328d674c2ddd1 (patch)
treeb87303a5d9f9f71dd16624175f6ddcfff7ed1e3d /args.go
parent50074e543b93fda1a5e1fac7fb37859c18499ac3 (diff)
loggging output cleanupsv0.12.16
Signed-off-by: Jeff Carr <[email protected]>
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 75b4e20..36961c0 100644
--- a/args.go
+++ b/args.go
@@ -6,11 +6,11 @@ import (
"go.wit.com/log"
)
-var INFO *log.LogFlag
+var GADGETS *log.LogFlag
func init() {
- full := "go.wit.com/gui/gadget"
+ full := "go.wit.com/gui"
short := "gadgets"
- INFO = log.NewFlag("INFO", false, full, short, "General Info")
+ GADGETS = log.NewFlag("GADGETS", false, full, short, "General Info")
}