diff options
| author | Vasily <just.one.man@yandex.ru> | 2020-03-03 19:22:45 +0300 |
|---|---|---|
| committer | Vasily <just.one.man@yandex.ru> | 2020-03-03 19:22:45 +0300 |
| commit | f21cd300390880ce4f2f5860c94100a4a25f7285 (patch) | |
| tree | 3d2ec8b78429644c9d4db6decee13989a914093c /MediaBrowser.Controller/Entities/BaseItem.cs | |
| parent | 11abe31e0d9751409c0ca289a3becd3901c5b953 (diff) | |
Lower log level for BaseItem.Equals to debug
Diffstat (limited to 'MediaBrowser.Controller/Entities/BaseItem.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/BaseItem.cs | 4 |
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; |
