Log at info level instead of warning

This commit is contained in:
Joe Kralicky 2024-05-20 13:14:56 -04:00
parent 6d703a4c44
commit 2a1db3b1ae
No known key found for this signature in database
GPG key ID: 75C4875F34A9FB79

View file

@ -137,7 +137,7 @@ func NewFileOrEnvironmentSource(
if cfg.Options.IsRuntimeFlagSet(RuntimeFlagConfigHotReload) {
src.watcher.Watch(ctx, []string{configFile})
} else {
log.Warn(ctx).Msg("hot reload disabled")
log.Info(ctx).Msg("hot reload disabled")
src.watcher.Watch(ctx, nil)
}
}