From b54d4a39cd1a9b1cf5d23e752c09cd70ebe27006 Mon Sep 17 00:00:00 2001 From: Bennett Wetters Date: Sat, 25 Jul 2026 22:10:50 +0200 Subject: [PATCH] fix(config): Mention what that list of paths in the log is --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index b57d615..bf81c0a 100644 --- a/config/config.go +++ b/config/config.go @@ -69,7 +69,7 @@ func ParseConfiguration() (conf SpaceapidConfig) { log.Println("Parsing configuration files") paths := getConfigPaths() - log.Println(paths) + log.Println("Config files:", paths) for _, path := range paths { // Read file file, err := os.ReadFile(path)