Skip to content

Commit

Permalink
runtime: change processed file event log level to info (#4514)
Browse files Browse the repository at this point in the history
"Processed file watch event." will now be logged at level "info" (was "warn").

Signed-off-by: Anders Eknert <anders@eknert.com>
  • Loading branch information
anderseknert committed Mar 30, 2022
1 parent 54ce8c2 commit 627b30c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/runtime.go
Expand Up @@ -801,7 +801,7 @@ func (rt *Runtime) onReloadLogger(d time.Duration, err error) {
rt.logger.WithFields(map[string]interface{}{
"duration": d,
"err": err,
}).Warn("Processed file watch event.")
}).Info("Processed file watch event.")
}

func (rt *Runtime) getWatcher(rootPaths []string) (*fsnotify.Watcher, error) {
Expand Down

0 comments on commit 627b30c

Please sign in to comment.