summaryrefslogtreecommitdiff
path: root/args.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-08 22:33:55 -0600
committerJeff Carr <[email protected]>2024-01-08 22:33:55 -0600
commit894f77b3ce9572b81e7f2c657feeee3bc901ae0c (patch)
treef35c16ed4d30246ddd986fa31c71d2d3183cef76 /args.go
parent366dc54ae45c39765a054760d2bae8c6a5c38a5e (diff)
go.wit.com/log change
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'args.go')
-rw-r--r--args.go10
1 files changed, 4 insertions, 6 deletions
diff --git a/args.go b/args.go
index 0c6e9e6..7a4a106 100644
--- a/args.go
+++ b/args.go
@@ -9,10 +9,8 @@ import (
var INFO log.LogFlag
func init() {
- INFO.B = false
- INFO.Name = "INFO"
- INFO.Subsystem = "gadgets"
- INFO.Short = "gadgets"
- INFO.Desc = "general info"
- INFO.Register()
+ full := "go.wit.com/gui/gadget"
+ short := "gadgets"
+
+ INFO.NewFlag("INFO", false, full, short, "General Info")
}