summaryrefslogtreecommitdiff
path: root/verbose.go
diff options
context:
space:
mode:
Diffstat (limited to 'verbose.go')
-rw-r--r--verbose.go5
1 files changed, 1 insertions, 4 deletions
diff --git a/verbose.go b/verbose.go
index 15ac95d..93c7b37 100644
--- a/verbose.go
+++ b/verbose.go
@@ -5,10 +5,7 @@
package log
func Verbose(a ...any) {
- if !VERBOSE.Ok() {
- return
- }
- if !VERBOSE.b {
+ if VERBOSE.Disabled() {
return
}
realPrintln(a...)