Skip to content

Commit

Permalink
Lower the forgotten logging level
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Feb 1, 2019
1 parent 6027696 commit 8a1dc80
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -177,14 +177,14 @@ public DeltaSetTriple<EvaluatedAssignmentImpl<AH>> processAllAssignments() throw
prismContext, task, result);

TaskType taskType = task.getTaskType();
LOGGER.info("Task for process: {}", taskType.asPrismObject().debugDump());
LOGGER.trace("Task for process: {}", taskType.asPrismObject().debugDumpLazily());
AssignmentType taskAssignment = null;
if (CollectionUtils.isNotEmpty(taskType.getAssignment())) {
taskAssignment = new AssignmentType(prismContext);
taskAssignment.setTarget(taskType);
}

LOGGER.info("Task assignemnt: {}", taskAssignment);
LOGGER.trace("Task assignment: {}", taskAssignment);

assignmentCollection.collect(focusContext.getObjectCurrent(), focusContext.getObjectOld(), assignmentDelta, forcedAssignments, taskAssignment);

Expand Down

0 comments on commit 8a1dc80

Please sign in to comment.