summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYour Name <[email protected]>2024-01-01 12:00:00 -0600
committerYour Name <[email protected]>2024-01-01 12:00:00 -0600
commit466a3c60768e918cc292b6a59caa98262ca2af71 (patch)
tree91ac10e14f0a77100878afe21ccdcd77199210fa
parentc1c1b8a75e9f11850882ea9199b7b3d4c35c83bc (diff)
tracking down all erroneous log messagesv0.22.16v0.22.15v0.22.14v0.22.13v0.22.12
-rw-r--r--log.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/log.go b/log.go
index fe94cf2..0f6de14 100644
--- a/log.go
+++ b/log.go
@@ -24,7 +24,7 @@ In your package, register NETWARN:
func Log(f *LogFlag, a ...any) {
if !f.Ok() {
// if the flag is NULL, notify the user they didn't initialize the flag
- a = append([]any{"FLAG = NULL"}, a...)
+ a = append([]any{"FLAG = NULL. Normal error output. please ignore for now"}, a...)
realPrintln(a...)
return
}