Skip to content

Commit

Permalink
fix: remove un-needed log info (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu authored Jul 31, 2024
1 parent b5b6e43 commit 1a2448e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static Execution findExecution(RunContext runContext, String executionId)
var executionVars = (Map<String, String>) runContext.getVariables().get("execution");
var isCurrentExecution = executionRendererId.equals(executionVars.get("id"));
if (isCurrentExecution) {
runContext.logger().info("Loading execution data for the current execution (this should only be done in a listener).");
runContext.logger().info("Loading execution data for the current execution.");
}

return retryInstance.run(
Expand Down

0 comments on commit 1a2448e

Please sign in to comment.