From 4019d1764e17ce498e73e431285cb73f482b8dfe Mon Sep 17 00:00:00 2001 From: Samuel Lorch Date: Sun, 7 Jul 2024 03:14:37 +0200 Subject: [PATCH] Reduce non video file log level --- server/scan.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/scan.go b/server/scan.go index 8b58fc3..8fb29c8 100644 --- a/server/scan.go +++ b/server/scan.go @@ -211,7 +211,7 @@ func scanLibrary(ctx context.Context, id int) { } 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 }