From 49c38378c3fe6f9c1cb105125224df2731f124bb Mon Sep 17 00:00:00 2001 From: Aleh Zasypkin Date: Fri, 6 Sep 2019 00:33:42 +0200 Subject: [PATCH] [7.x] Downgrade log level from info to debug for cases when we cannot handle authentication attempt. (#44944) --- 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, });