mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
Authentication request log with IP
This commit is contained in:
parent
5a816f0b22
commit
2fb9e36493
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user