fix(server): change log level for some unimportant messages

Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan 2025-03-05 20:54:06 -05:00
parent 0372339e1b
commit 8732fc7226

View file

@ -139,7 +139,7 @@ func schedulePeriodicScan(ctx context.Context) func() error {
return func() error {
schedule := conf.Server.Scanner.Schedule
if schedule == "" {
log.Warn(ctx, "Periodic scan is DISABLED")
log.Info(ctx, "Periodic scan is DISABLED")
return nil
}
@ -236,7 +236,7 @@ func schedulePeriodicBackup(ctx context.Context) func() error {
return func() error {
schedule := conf.Server.Backup.Schedule
if schedule == "" {
log.Warn(ctx, "Periodic backup is DISABLED")
log.Info(ctx, "Periodic backup is DISABLED")
return nil
}