From 461d0b77e9d2e161f7e177f096208853da6c031b Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Wed, 21 May 2025 09:49:44 -0400 Subject: [PATCH] Print out all config file paths on startup --- phases.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/phases.go b/phases.go index 73d805f..6a7f25e 100644 --- a/phases.go +++ b/phases.go @@ -129,6 +129,12 @@ func (this *environment) phase30ConfigurationParsing() bool { log.Println("!!! (30) could not determine location of file(s):", err) return true } + if this.Verb() { + log.Println("(i) (30) have configuration files:") + for _, paths := range paths { + log.Println("(i) (30) -", paths) + } + } if this.flags.configFile != "" { paths = append(paths, this.flags.configFile) }