mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Lower log level for BaseItem.Equals to debug
This commit is contained in:
parent
11abe31e0d
commit
f21cd30039
@ -2921,13 +2921,13 @@ namespace MediaBrowser.Controller.Entities
|
|||||||
|
|
||||||
public override bool Equals(object obj)
|
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);
|
return this.Equals(obj as BaseItem);
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool Equals(BaseItem item)
|
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)
|
if (item == null)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user