Skip to content

Commit 549c9e5

Browse files
Artur-philwebb
authored andcommitted
Fix typo in LocalDevToolsAutoConfiguration logging
See gh-33569
1 parent 4610fe3 commit 549c9e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-boot-project/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/autoconfigure/LocalDevToolsAutoConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ static class RestartingClassPathChangeChangedEventListener implements Applicatio
211211
public void onApplicationEvent(ClassPathChangedEvent event) {
212212
if (event.isRestartRequired()) {
213213
logger.info(LogMessage.format("Restarting due to %s", event.overview()));
214-
logger.debug(LogMessage.of(() -> "Change set: %s" + event.getChangeSet()));
214+
logger.debug(LogMessage.of(() -> "Change set: " + event.getChangeSet()));
215215
Restarter.getInstance().restart(new FileWatchingFailureHandler(this.fileSystemWatcherFactory));
216216
}
217217
}

0 commit comments

Comments
 (0)