mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Change log level of some scanner operations
This commit is contained in:
parent
a706cb46fa
commit
3239be4a4d
2 changed files with 4 additions and 3 deletions
|
@ -88,6 +88,7 @@ func (s *Scanner) loadFolders() {
|
|||
|
||||
func (s *Scanner) newScanner(f model.MediaFolder) FolderScanner {
|
||||
if conf.Server.DevNewScanner {
|
||||
log.Warn("Using *experimental* new scanner")
|
||||
return NewTagScanner2(f.Path, s.ds)
|
||||
}
|
||||
return NewTagScanner(f.Path, s.ds)
|
||||
|
|
|
@ -98,7 +98,7 @@ func (s *TagScanner2) getDirTree(ctx context.Context) (dirMap, error) {
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
log.Trace("Directory tree loaded", "total", len(dirs), "elapsed", time.Since(start))
|
||||
log.Debug("Directory tree loaded", "total", len(dirs), "elapsed", time.Since(start))
|
||||
return dirs, nil
|
||||
}
|
||||
|
||||
|
@ -112,7 +112,7 @@ func (s *TagScanner2) getChangedDirs(ctx context.Context, dirs dirMap, lastModif
|
|||
}
|
||||
}
|
||||
sort.Strings(changed)
|
||||
log.Trace(ctx, "Finished changed folders check", "total", len(changed), "elapsed", time.Since(start))
|
||||
log.Debug(ctx, "Finished changed folders check", "total", len(changed), "elapsed", time.Since(start))
|
||||
return changed
|
||||
}
|
||||
|
||||
|
@ -146,7 +146,7 @@ func (s *TagScanner2) getDeletedDirs(ctx context.Context, allDirs dirMap, change
|
|||
}
|
||||
|
||||
sort.Strings(deleted)
|
||||
log.Trace(ctx, "Finished deleted folders check", "total", len(deleted), "elapsed", time.Since(start))
|
||||
log.Debug(ctx, "Finished deleted folders check", "total", len(deleted), "elapsed", time.Since(start))
|
||||
return deleted, nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue