We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9c010b commit f9814bbCopy full SHA for f9814bb
client/src/main/java/io/dapr/durabletask/TaskOrchestrationExecutor.java
@@ -1188,7 +1188,7 @@ private boolean shouldRetry() {
1188
}
1189
1190
private boolean shouldRetryBasedOnPolicy() {
1191
- logger.warning(this.attemptNumber + " retries out of total %d performed " + this.policy.getMaxNumberOfAttempts());
+ logger.warning(() -> String.format(this.attemptNumber + " retries out of total %d performed " + this.policy.getMaxNumberOfAttempts()));
1192
1193
if (this.attemptNumber >= this.policy.getMaxNumberOfAttempts()) {
1194
// Max number of attempts exceeded
0 commit comments