Fix log spam from EF Core

This commit is contained in:
Patrick Barron 2020-07-07 18:20:17 -04:00
parent 3e53eb1cde
commit 3cca8db905

View File

@ -296,7 +296,7 @@ namespace Emby.Server.Implementations.Session
}
catch (DbUpdateConcurrencyException e)
{
_logger.LogWarning(e, "Error updating user's last activity date.");
_logger.LogDebug(e, "Error updating user's last activity date.");
}
}
}