Remove redundant logging

This commit is contained in:
Ian Fijolek
2024-11-15 16:40:54 -08:00
parent be2e8121c5
commit 4aef7b7458
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -130,7 +130,6 @@ func LoadConfig(filePath string) (Config, error) {
var config Config
if err := hclsimple.DecodeFile(filePath, nil, &config); err != nil {
slog.Debugf("Failed to load config from %s: %v", filePath, err)
return config, errors.Join(ErrLoadingConfig, err)
}