Skip to content

Commit

Permalink
Polish 'Fix typo in LocalDevToolsAutoConfiguration logging'
Browse files Browse the repository at this point in the history
  • Loading branch information
philwebb committed Dec 22, 2022
1 parent 549c9e5 commit 42aa661
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -211,7 +211,7 @@ static class RestartingClassPathChangeChangedEventListener implements Applicatio
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));
}
}
Expand Down

0 comments on commit 42aa661

Please sign in to comment.