Skip to content

Commit

Permalink
Change INFO to DEBUG in AuditController
Browse files Browse the repository at this point in the history
(This message is logged when displaying audit trail in GUI,
so there's no need to log at INFO level.)
  • Loading branch information
mederly committed Apr 7, 2020
1 parent 652a6d3 commit 1d2b306
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -109,7 +109,7 @@ public <O extends ObjectType> PrismObject<O> reconstructObject(Class<O> type, St
List<AuditEventRecord> changeTrail = getChangeTrail(oid, eventIdentifier, result);
LOGGER.trace("Found change trail for {} containing {} events", oid, changeTrail.size());

LOGGER.info("TRAIL:\n{}", DebugUtil.debugDump(changeTrail, 1));
LOGGER.debug("TRAIL:\n{}", DebugUtil.debugDumpLazily(changeTrail, 1));

PrismObject<O> objectFromLastEvent = getObjectFromLastEvent(currentObject, changeTrail, eventIdentifier);
if (objectFromLastEvent != null) {
Expand Down

0 comments on commit 1d2b306

Please sign in to comment.