Skip to content

Commit

Permalink
Add diagnostic logging for partial errors
Browse files Browse the repository at this point in the history
(in processErrorCriticality)
  • Loading branch information
mederly committed Jun 12, 2019
1 parent cc27811 commit 696bf41
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -45,6 +45,7 @@ public static <O extends ObjectType> void processErrorCriticality(O object, Crit
result.recordPartialError(e);
}
LOGGER.warn("Partial error while processing projection on {}: {}", object, e.getMessage(), e);
LOGGER.warn("Operation result:\n{}", result != null ? result.debugDump() : "(null)");
break;
case IGNORE:
LOGGER.debug("Exception {} criticality set as IGNORE in {}, continuing evaluation; exception message: {}", e.getClass().getSimpleName(), object, e.getMessage());
Expand Down

0 comments on commit 696bf41

Please sign in to comment.