fix(log): change debug log level to trace to reduce log noise from cron

Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan 2026-08-06 00:40:58 -04:00
parent 50633f839d
commit d764a1e9d7

View File

@ -11,7 +11,7 @@ func (l *logger) Info(msg string, keysAndValues ...any) {
"Scheduler: " + msg,
}
args = append(args, keysAndValues...)
log.Debug(args...)
log.Trace(args...)
}
func (l *logger) Error(err error, msg string, keysAndValues ...any) {