From e1a63752ca5309cf5f9b59ffc6c8b36a15bbbf23 Mon Sep 17 00:00:00 2001 From: Darin Kelkhoff Date: Fri, 31 May 2024 11:15:16 -0500 Subject: [PATCH] (finally) downgrade some of the every-freaking-request session logging --- .../implementations/Auth0AuthenticationModule.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/modules/authentication/implementations/Auth0AuthenticationModule.java b/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/modules/authentication/implementations/Auth0AuthenticationModule.java index 03b8b540..1ffae8c9 100644 --- a/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/modules/authentication/implementations/Auth0AuthenticationModule.java +++ b/qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/modules/authentication/implementations/Auth0AuthenticationModule.java @@ -196,7 +196,7 @@ public class Auth0AuthenticationModule implements QAuthenticationModuleInterface // process a sessionUUID - looks up userSession record - cannot create token this way. // ///////////////////////////////////////////////////////////////////////////////////////// String sessionUUID = context.get(SESSION_UUID_KEY); - LOG.debug("Creating session from sessionUUID (userSession)", logPair("sessionUUID", maskForLog(sessionUUID))); + LOG.trace("Creating session from sessionUUID (userSession)", logPair("sessionUUID", maskForLog(sessionUUID))); if(sessionUUID != null) { accessToken = getAccessTokenFromSessionUUID(metaData, sessionUUID); @@ -254,7 +254,7 @@ public class Auth0AuthenticationModule implements QAuthenticationModuleInterface // decode the credentials from the header auth // ///////////////////////////////////////////////// String base64Credentials = context.get(BASIC_AUTH_KEY).trim(); - LOG.info("Creating session from basicAuthentication", logPair("base64Credentials", maskForLog(base64Credentials))); + LOG.trace("Creating session from basicAuthentication", logPair("base64Credentials", maskForLog(base64Credentials))); accessToken = getAccessTokenFromBase64BasicAuthCredentials(metaData, auth, base64Credentials); } catch(Auth0Exception e) @@ -273,7 +273,7 @@ public class Auth0AuthenticationModule implements QAuthenticationModuleInterface // process an api key - looks up client application token (creating token if needed) // /////////////////////////////////////////////////////////////////////////////////////// String apiKey = context.get(API_KEY); - LOG.info("Creating session from apiKey (accessTokenTable)", logPair("apiKey", maskForLog(apiKey))); + LOG.trace("Creating session from apiKey (accessTokenTable)", logPair("apiKey", maskForLog(apiKey))); if(apiKey != null) { accessToken = getAccessTokenFromApiKey(metaData, apiKey);