Skip to content

Commit

Permalink
sanatise trace logging of async jobs (#8892)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanHoogland authored Apr 24, 2024
1 parent a358c9a commit 1efce77
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ protected void runInContext() {
} else {
// TODO, job wakeup is not in use yet
if (logger.isTraceEnabled())
logger.trace("Unable to find a wakeup dispatcher from the joined job: " + job);
logger.trace("Unable to find a wakeup dispatcher from the joined job: {}", () -> StringUtils.cleanString(job.toString()));
}
} else {
AsyncJobDispatcher jobDispatcher = getDispatcher(job.getDispatcher());
Expand Down

0 comments on commit 1efce77

Please sign in to comment.