aboutsummaryrefslogtreecommitdiffstats
path: root/internal
diff options
context:
space:
mode:
Diffstat (limited to 'internal')
-rw-r--r--internal/vlog/vlog.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/internal/vlog/vlog.go b/internal/vlog/vlog.go
index ab48478..2cd30a5 100644
--- a/internal/vlog/vlog.go
+++ b/internal/vlog/vlog.go
@@ -8,7 +8,7 @@ import (
var VERBOSE bool
func init() {
- VERBOSE=false
+ VERBOSE = false
}
func Printf(format string, v ...interface{}) {
@@ -22,4 +22,3 @@ func Println(v ...interface{}) {
fmt.Println(v...)
}
}
-