Skip to content

Commit

Permalink
Chore: mismatch of logging placeholders and arguments (#3709)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbmalkovsky authored Aug 17, 2023
1 parent 4d834ff commit 2c8558d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ protected void logLoopDetails(DelegateExecution execution, String custom, int lo
if (LOGGER.isDebugEnabled()) {
LOGGER.debug("Multi-instance '{}' {}. Details: loopCounter={}, nrOrCompletedInstances={},nrOfActiveInstances={},nrOfInstances={}",
execution.getCurrentFlowElement() != null ? execution.getCurrentFlowElement().getId() : "", custom, loopCounter,
nrOfCompletedInstances, nrOfActiveInstances, nrOfInstances, execution);
nrOfCompletedInstances, nrOfActiveInstances, nrOfInstances);
}
}

Expand Down

0 comments on commit 2c8558d

Please sign in to comment.