From ff7faa8d6b1d845776e27f9c137923abd59684f2 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Tue, 21 Oct 2025 04:48:54 -0500 Subject: trying to get this to work again --- verbose.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'verbose.go') 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 { -- cgit v1.2.3