Skip to content

Commit

Permalink
Logged runtime excpetions as a debug due to less sensitivity.
Browse files Browse the repository at this point in the history
  • Loading branch information
malithie committed Jul 31, 2024
1 parent 911b476 commit 477fce2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public ActionExecutionStatus execute(ActionType actionType, Map<String, Object>
.orElse(new ActionExecutionStatus(ActionExecutionStatus.Status.FAILED, eventContext));
} catch (ActionExecutionRuntimeException e) {
// todo: add to diagnostics
LOG.error("Skip executing actions for action type: " + actionType.name() + ". Error: " + e.getMessage(), e);
LOG.debug("Skip executing actions for action type: " + actionType.name(), e);
return new ActionExecutionStatus(ActionExecutionStatus.Status.FAILED, eventContext);

}
Expand Down

0 comments on commit 477fce2

Please sign in to comment.