Skip to content

Commit 52d087b

Browse files
committed
fix: change log level from Info to Debug for loaded config message
1 parent 322160f commit 52d087b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/config/config_loader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func Init(configPath string, envConfig *env.Config) (*Config, error) {
2929
if err != nil {
3030
log.Error().Err(err).Msg("Failed to marshal config")
3131
} else {
32-
log.Info().RawJSON("config", prettyJSON).Msg("Loaded config")
32+
log.Debug().RawJSON("config", prettyJSON).Msg("Loaded config")
3333
}
3434

3535
if err := v.Unmarshal(&config); err != nil {

0 commit comments

Comments
 (0)