diff options
Diffstat (limited to 'verbose.go')
| -rw-r--r-- | verbose.go | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1,5 +1,7 @@ package env +import "os" + // this is an experiment at this point to // see how this turns out @@ -25,6 +27,10 @@ func Verbose() bool { return true } } + + if os.Getenv("VERBOSE") == "true" { + return true + } return false } |
