浏览代码

Lower log level for BaseItem.Equals to debug

Vasily 5 年之前
父节点
当前提交
f21cd30039
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      MediaBrowser.Controller/Entities/BaseItem.cs

+ 2 - 2
MediaBrowser.Controller/Entities/BaseItem.cs

@@ -2921,13 +2921,13 @@ namespace MediaBrowser.Controller.Entities
 
         public override bool Equals(object obj)
         {
-            Logger.LogInformation("Comparing me ({0}) to generic them ({1})", this, obj);
+            Logger.LogDebug("Comparing me ({0}) to generic them ({1})", this, obj);
             return this.Equals(obj as BaseItem);
         }
 
         public bool Equals(BaseItem item)
         {
-            Logger.LogInformation("Comparing me ({0}) to specific them ({1})", this, item);
+            Logger.LogDebug("Comparing me ({0}) to specific them ({1})", this, item);
             if (item == null)
             {
                 return false;