Skip to content

log: Refactor to stop using standard logger (pt.1)

This MR is the first part to stop using the standard logger in favor of the logger configured in internal/log. It replaces all use of logrus.(Info,Error,Warn,Warning,Debug,Fatal) and logrus.StandardLogger() with internal/log.Default() or ctxlogrus.Extract().

This MR does not yet address usage of logrus.With(Error,Context,Field,Fields,Time) or the log packages. These will be addressed in follow-up merge requests.

Merge request reports