From 393db165f31ed89a30f36131e9ec26a6c7d28fce 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 (cherry picked from commit 9ebe043bd94d036fe2ab45f3bb3f882cda48e211) --- src/Lidarr.Http/Authentication/AuthenticationService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Lidarr.Http/Authentication/AuthenticationService.cs b/src/Lidarr.Http/Authentication/AuthenticationService.cs index 64dd0f323..d01cd9911 100644 --- a/src/Lidarr.Http/Authentication/AuthenticationService.cs +++ b/src/Lidarr.Http/Authentication/AuthenticationService.cs @@ -77,7 +77,7 @@ namespace Lidarr.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)