Skip to content

Instantly share code, notes, and snippets.

@tijsrademakers
Created November 14, 2019 11:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tijsrademakers/d108555cdbbdf317a45bd4ce951e1b33 to your computer and use it in GitHub Desktop.
Save tijsrademakers/d108555cdbbdf317a45bd4ce951e1b33 to your computer and use it in GitHub Desktop.
protected void executeActivityBehavior(ActivityBehavior activityBehavior, FlowNode flowNode) {
LOGGER.debug("Executing activityBehavior {} on activity '{}' with execution {}",
activityBehavior.getClass(), flowNode.getId(), execution.getId());
ProcessEngineConfigurationImpl processEngineConfiguration =
CommandContextUtil.getProcessEngineConfiguration();
....
if (processEngineConfiguration.isLoggingSessionEnabled()) {
BpmnLoggingSessionUtil.addExecuteActivityBehaviorLoggingData(
LoggingSessionConstants.TYPE_ACTIVITY_BEHAVIOR_EXECUTE,
activityBehavior, flowNode, execution);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment