diff options
| author | Jeff Carr <[email protected]> | 2025-10-21 04:48:54 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-21 04:48:54 -0500 |
| commit | ff7faa8d6b1d845776e27f9c137923abd59684f2 (patch) | |
| tree | 4e7a0bcc5234aae7a834c7617054dcf0b39ee974 /verbose.go | |
| parent | 5c4c1fcaf4e724573dd39b4d4fa0d600a9870221 (diff) | |
trying to get this to work again
Diffstat (limited to 'verbose.go')
| -rw-r--r-- | verbose.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,7 +6,7 @@ package config func Verbose() bool { // always use the config file value first if configPB != nil { - found := configPB.FindByKey("Verbose") + found := configPB.findByKey("Verbose") if found == nil { // Verbose isn't in the config. do nothing here } else { @@ -31,7 +31,7 @@ func Verbose() bool { func If(key string) bool { // always use the config file value first if configPB != nil { - found := configPB.FindByKey(key) + found := configPB.findByKey(key) if found == nil { // Verbose isn't in the config. do nothing here } else { |
