From 9b8d7af551892f5c942ae8a4a137401ef9224685 Mon Sep 17 00:00:00 2001 From: Aleh Zasypkin Date: Thu, 5 Sep 2019 23:07:39 +0200 Subject: [PATCH] Downgrade log level from info to debug for cases when we cannot handle authentication attempt. (#44933) --- x-pack/plugins/security/server/authentication/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/security/server/authentication/index.ts b/x-pack/plugins/security/server/authentication/index.ts index d5100378fb542..f122f3d89c207 100644 --- a/x-pack/plugins/security/server/authentication/index.ts +++ b/x-pack/plugins/security/server/authentication/index.ts @@ -143,7 +143,7 @@ export async function setupAuthentication({ }); } - authLogger.info('Could not handle authentication attempt'); + authLogger.debug('Could not handle authentication attempt'); return response.unauthorized({ headers: authenticationResult.authResponseHeaders, });