aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/BaseItem.cs
diff options
context:
space:
mode:
authorVasily <just.one.man@yandex.ru>2020-03-03 19:22:45 +0300
committerVasily <just.one.man@yandex.ru>2020-03-03 19:22:45 +0300
commitf21cd300390880ce4f2f5860c94100a4a25f7285 (patch)
tree3d2ec8b78429644c9d4db6decee13989a914093c /MediaBrowser.Controller/Entities/BaseItem.cs
parent11abe31e0d9751409c0ca289a3becd3901c5b953 (diff)
Lower log level for BaseItem.Equals to debug
Diffstat (limited to 'MediaBrowser.Controller/Entities/BaseItem.cs')
-rw-r--r--MediaBrowser.Controller/Entities/BaseItem.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs
index 263a84119..1177f921d 100644
--- a/MediaBrowser.Controller/Entities/BaseItem.cs
+++ b/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;