mirror of
https://github.com/navidrome/navidrome.git
synced 2025-03-31 11:07:36 +03:00
fix(server): change log level for some unimportant messages
Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
parent
0372339e1b
commit
8732fc7226
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue