Reduce non video file log level
All checks were successful
/ release (push) Successful in 27s

This commit is contained in:
Samuel Lorch 2024-07-07 03:14:37 +02:00
parent 67aa389f79
commit 4019d1764e

View file

@ -211,7 +211,7 @@ func scanLibrary(ctx context.Context, id int) {
} }
if !slices.Contains(videoFileExtensions, filepath.Ext(fullPath)) { if !slices.Contains(videoFileExtensions, filepath.Ext(fullPath)) {
slog.InfoContext(ctx, "Skipping non video file", "path", fullPath) slog.DebugContext(ctx, "Skipping non video file", "path", fullPath)
return nil return nil
} }