diff --git a/src/sse/services/auth.ts b/src/sse/services/auth.ts index dea088ba3c..5d315fb13d 100644 --- a/src/sse/services/auth.ts +++ b/src/sse/services/auth.ts @@ -1412,7 +1412,7 @@ export async function getProviderCredentials( retryAfterHuman: formatRetryAfter(earliest), }; } - log.warn("AUTH", `${provider} | ${allConnections.length} accounts found but none active`); + log.debug("AUTH", `${provider} | ${allConnections.length} accounts found but none active`); allConnections.forEach((c) => { log.debug( "AUTH", @@ -1463,7 +1463,7 @@ export async function getProviderCredentials( return geminiEnvCredentials; } invalidateManagedLease(options, "CONNECTION_INELIGIBLE"); - log.warn("AUTH", `No credentials for ${provider}`); + log.debug("AUTH", `No credentials for ${provider}`); return null; }