summaryrefslogtreecommitdiff
path: root/verbose.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-21 04:48:54 -0500
committerJeff Carr <[email protected]>2025-10-21 04:48:54 -0500
commitff7faa8d6b1d845776e27f9c137923abd59684f2 (patch)
tree4e7a0bcc5234aae7a834c7617054dcf0b39ee974 /verbose.go
parent5c4c1fcaf4e724573dd39b4d4fa0d600a9870221 (diff)
trying to get this to work again
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 {