summaryrefslogtreecommitdiff
path: root/args.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-04-30 14:40:58 -0500
committerJeff Carr <[email protected]>2025-04-30 14:40:58 -0500
commit22190f10e35e9617bd8da5782249925955ad4f9e (patch)
treecee23013830bc26bb32a9c0203df21a1c8ce97f6 /args.go
parentd72602be948fcdd8ed9ab45dcdc3e4eb177ece37 (diff)
make a way to debug sending a widget protobuf treev0.22.31v0.22.30v0.22.29v0.22.28v0.22.27
Diffstat (limited to 'args.go')
-rw-r--r--args.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/args.go b/args.go
index 36961c0..92420ec 100644
--- a/args.go
+++ b/args.go
@@ -7,10 +7,12 @@ import (
)
var GADGETS *log.LogFlag
+var WARN *log.LogFlag
func init() {
full := "go.wit.com/gui"
short := "gadgets"
GADGETS = log.NewFlag("GADGETS", false, full, short, "General Info")
+ WARN = log.NewFlag("WARN", true, full, short, "gadgets bad")
}