Parcourir la source

Fix log spam from EF Core

Patrick Barron il y a 5 ans
Parent
commit
3cca8db905
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      Emby.Server.Implementations/Session/SessionManager.cs

+ 1 - 1
Emby.Server.Implementations/Session/SessionManager.cs

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