From 98c737a1460c05e291a04d5da35857cd4d01e6d5 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 10 Aug 2025 21:15:05 -0700 Subject: [PATCH] New: Move auth success logging to debug Closes #7978 --- src/Sonarr.Http/Authentication/AuthenticationService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Sonarr.Http/Authentication/AuthenticationService.cs b/src/Sonarr.Http/Authentication/AuthenticationService.cs index 9b6ad9c56..7e8a97baa 100644 --- a/src/Sonarr.Http/Authentication/AuthenticationService.cs +++ b/src/Sonarr.Http/Authentication/AuthenticationService.cs @@ -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)