diff options
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 { |
