소스 검색

Merge pull request #3270 from KristupasSavickas/reduce-blurhash-logspam

reduce log spam when generating blurhashes
Bond-009 5 년 전
부모
커밋
616d24f91c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Emby.Drawing/ImageProcessor.cs

+ 1 - 1
Emby.Drawing/ImageProcessor.cs

@@ -300,7 +300,7 @@ namespace Emby.Drawing
             }
 
             string path = info.Path;
-            _logger.LogInformation("Getting image size for item {ItemType} {Path}", item.GetType().Name, path);
+            _logger.LogDebug("Getting image size for item {ItemType} {Path}", item.GetType().Name, path);
 
             ImageDimensions size = GetImageDimensions(path);
             info.Width = size.Width;