summaryrefslogtreecommitdiff
path: root/verbose.go
diff options
context:
space:
mode:
Diffstat (limited to 'verbose.go')
-rw-r--r--verbose.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/verbose.go b/verbose.go
index d08885c..438475a 100644
--- a/verbose.go
+++ b/verbose.go
@@ -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 {