Browse Source

Authentication request log with IP

Didier Dafond 5 years ago
parent
commit
2fb9e36493
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Emby.Server.Implementations/Library/UserManager.cs

+ 1 - 1
Emby.Server.Implementations/Library/UserManager.cs

@@ -357,7 +357,7 @@ namespace Emby.Server.Implementations.Library
                 IncrementInvalidLoginAttemptCount(user);
             }
 
-            _logger.LogInformation("Authentication request for {0} {1}.", user.Name, success ? "has succeeded" : "has been denied");
+            _logger.LogInformation("Authentication request for {0} {1} (IP: {2}).", user.Name, success ? "has succeeded" : "has been denied", remoteEndPoint);
 
             return success ? user : null;
         }