Skip to content

Commit 42aa661

Browse files
committed
Polish 'Fix typo in LocalDevToolsAutoConfiguration logging'
See gh-33569
1 parent 549c9e5 commit 42aa661

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: " + event.getChangeSet()));
214+
logger.debug(LogMessage.format("Change set: %s", event.getChangeSet()));
215215
Restarter.getInstance().restart(new FileWatchingFailureHandler(this.fileSystemWatcherFactory));
216216
}
217217
}

0 commit comments

Comments
 (0)