Polish 'Fix typo in LocalDevToolsAutoConfiguration logging'

See gh-33569
This commit is contained in:
Phillip Webb 2022-12-21 22:34:26 -08:00
parent 549c9e5076
commit 42aa661e69
1 changed files with 1 additions and 1 deletions

View File

@ -211,7 +211,7 @@ public class LocalDevToolsAutoConfiguration {
public void onApplicationEvent(ClassPathChangedEvent event) {
if (event.isRestartRequired()) {
logger.info(LogMessage.format("Restarting due to %s", event.overview()));
logger.debug(LogMessage.of(() -> "Change set: " + event.getChangeSet()));
logger.debug(LogMessage.format("Change set: %s", event.getChangeSet()));
Restarter.getInstance().restart(new FileWatchingFailureHandler(this.fileSystemWatcherFactory));
}
}