1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-09-16 09:26:36 +02:00

New: Move auth success logging to debug

Closes #7978
This commit is contained in:
Mark McDowall
2025-08-10 21:15:05 -07:00
parent f0798550af
commit 98c737a146

View File

@@ -77,7 +77,7 @@ namespace Sonarr.Http.Authentication
private void LogSuccess(HttpRequest context, string username)
{
_authLogger.Info("Auth-Success ip {0} username '{1}'", context.GetRemoteIP(), username);
_authLogger.Debug("Auth-Success ip {0} username '{1}'", context.GetRemoteIP(), username);
}
private void LogLogout(HttpRequest context, string username)