summaryrefslogtreecommitdiff
path: root/verbose.go
diff options
context:
space:
mode:
Diffstat (limited to 'verbose.go')
-rw-r--r--verbose.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/verbose.go b/verbose.go
index 31c3772..ed776b8 100644
--- a/verbose.go
+++ b/verbose.go
@@ -5,6 +5,7 @@ import (
)
func Verbose(a ...any) {
- if ! VERBOSE.B { return }
+ if ! VERBOSE.Ok() { return }
+ if ! VERBOSE.b { return }
golanglog.Println(a...)
}