aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Session/SessionManager.cs
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2020-07-07 18:20:17 -0400
committerPatrick Barron <barronpm@gmail.com>2020-07-07 18:20:17 -0400
commit3cca8db9059e7c0316d829f85d05dcb03ae70a95 (patch)
treec1defd3a5c88a0dff93b54340b0698443aa11fbb /Emby.Server.Implementations/Session/SessionManager.cs
parent3e53eb1cdeeef57d82a691d38c85e250a28e22ba (diff)
Fix log spam from EF Core
Diffstat (limited to 'Emby.Server.Implementations/Session/SessionManager.cs')
-rw-r--r--Emby.Server.Implementations/Session/SessionManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs
index d069d1ada..ca9f95c70 100644
--- a/Emby.Server.Implementations/Session/SessionManager.cs
+++ b/Emby.Server.Implementations/Session/SessionManager.cs
@@ -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.");
}
}
}