mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-17 20:50:44 +00:00
downgraded some loggly infos to debugs to stop filling up
This commit is contained in:
@ -186,7 +186,7 @@ public class QRecord implements Serializable
|
|||||||
//////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////
|
||||||
// we know entry is serializable at this point, based on type param's bound //
|
// we know entry is serializable at this point, based on type param's bound //
|
||||||
//////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////
|
||||||
LOG.info("Non-primitive serializable value in QRecord - calling SerializationUtils.clone...", logPair("key", entry.getKey()), logPair("type", value.getClass()));
|
LOG.debug("Non-primitive serializable value in QRecord - calling SerializationUtils.clone...", logPair("key", entry.getKey()), logPair("type", value.getClass()));
|
||||||
clone.put(entry.getKey(), (V) SerializationUtils.clone(entry.getValue()));
|
clone.put(entry.getKey(), (V) SerializationUtils.clone(entry.getValue()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -176,7 +176,7 @@ public class Auth0AuthenticationModule implements QAuthenticationModuleInterface
|
|||||||
// process a sessionUUID - looks up userSession record - cannot create token this way. //
|
// process a sessionUUID - looks up userSession record - cannot create token this way. //
|
||||||
/////////////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////////////
|
||||||
String sessionUUID = context.get(SESSION_UUID_KEY);
|
String sessionUUID = context.get(SESSION_UUID_KEY);
|
||||||
LOG.info("Creating session from sessionUUID (userSession)", logPair("sessionUUID", maskForLog(sessionUUID)));
|
LOG.debug("Creating session from sessionUUID (userSession)", logPair("sessionUUID", maskForLog(sessionUUID)));
|
||||||
if(sessionUUID != null)
|
if(sessionUUID != null)
|
||||||
{
|
{
|
||||||
accessToken = getAccessTokenFromSessionUUID(metaData, sessionUUID);
|
accessToken = getAccessTokenFromSessionUUID(metaData, sessionUUID);
|
||||||
|
@ -1081,7 +1081,7 @@ public class BaseAPIActionUtil
|
|||||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
// trim response body (just to keep logs smaller, or, in case someone consuming logs doesn't want such long lines) //
|
// trim response body (just to keep logs smaller, or, in case someone consuming logs doesn't want such long lines) //
|
||||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
LOG.info("Received successful response with code [" + qResponse.getStatusCode() + "] and content [" + StringUtils.safeTruncate(qResponse.getContent(), getMaxResponseMessageLengthForLog(), "...") + "].");
|
LOG.debug("Received successful response with code [" + qResponse.getStatusCode() + "] and content [" + StringUtils.safeTruncate(qResponse.getContent(), getMaxResponseMessageLengthForLog(), "...") + "].");
|
||||||
return (qResponse);
|
return (qResponse);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user