Fix log statement (#16768)

The current log statement prints "%s", updating to properly include the parameter
This commit is contained in:
somethingvague 2023-10-10 04:34:58 +01:00 committed by GitHub
parent 4a17c22905
commit 594308f821
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -562,8 +562,7 @@ public class WorkflowSettings {
*/
public WorkflowSettings build() {
WorkflowSettings instance = new WorkflowSettings(this);
//noinspection PlaceholderCountMatchesArgumentCount
LOGGER.debug("WorkflowSettings#build: %s", instance.toString());
LOGGER.debug("WorkflowSettings#build: {}", instance);
return instance;
}
}