summaryrefslogtreecommitdiff
path: root/args.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-08 23:53:53 -0600
committerJeff Carr <[email protected]>2024-01-08 23:53:53 -0600
commit7ac6f3e85bc7dad9f37575f2e024966d720dc819 (patch)
tree5a8b0424c06bf8b4bcfe03243576bbec4e77ee89 /args.go
parent894f77b3ce9572b81e7f2c657feeee3bc901ae0c (diff)
go.wit.com/log change
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 7a4a106..75b4e20 100644
--- a/args.go
+++ b/args.go
@@ -6,11 +6,11 @@ import (
"go.wit.com/log"
)
-var INFO log.LogFlag
+var INFO *log.LogFlag
func init() {
full := "go.wit.com/gui/gadget"
short := "gadgets"
- INFO.NewFlag("INFO", false, full, short, "General Info")
+ INFO = log.NewFlag("INFO", false, full, short, "General Info")
}