浏览代码

Changed LogTrace to LogDebug

Jean-Pierre Bachmann 2 年之前
父节点
当前提交
0ed4fd5759
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Emby.Server.Implementations/ScheduledTasks/Tasks/CleanupCollectionPathsTask.cs

+ 1 - 1
Emby.Server.Implementations/ScheduledTasks/Tasks/CleanupCollectionPathsTask.cs

@@ -72,7 +72,7 @@ public class CleanupCollectionPathsTask : IScheduledTask
         }
 
         var collections = collectionsFolder.Children.OfType<BoxSet>().ToArray();
-        _logger.LogTrace("Found {CollectionLength} Boxsets", collections.Length);
+        _logger.LogDebug("Found {CollectionLength} Boxsets", collections.Length);
 
         for (var index = 0; index < collections.Length; index++)
         {