Skip to content

Commit b7eb7f2

Browse files
committed
Merge pull request #33569 from Artur-
* pr/33569: Polish 'Fix typo in LocalDevToolsAutoConfiguration logging' Fix typo in LocalDevToolsAutoConfiguration logging Closes gh-33569
2 parents 4610fe3 + 42aa661 commit b7eb7f2

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

0 commit comments

Comments
 (0)