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 committed by Joe Stump
parent 854729b0f3
commit 6326b1407d
No known key found for this signature in database
GPG Key ID: 29151C3EC48A0EB9

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
}