diff options
| author | Jeff Carr <[email protected]> | 2025-10-28 21:59:48 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-28 21:59:48 -0500 |
| commit | 200b76da8a0dd95b524d44e90a92106a9699d9fd (patch) | |
| tree | fbd9110e1b464278c5b9faa93639fe887494effd /verbose.go | |
| parent | 05d09b7584b4cd18676c68dd161142044437a7af (diff) | |
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 } |
