Skip to content

Commit

Permalink
Fix typo in LocalDevToolsAutoConfiguration logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Artur- authored and philwebb committed Dec 22, 2022
1 parent 4610fe3 commit 549c9e5
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: %s" + event.getChangeSet()));
logger.debug(LogMessage.of(() -> "Change set: " + event.getChangeSet()));
Restarter.getInstance().restart(new FileWatchingFailureHandler(this.fileSystemWatcherFactory));
}
}
Expand Down

0 comments on commit 549c9e5

Please sign in to comment.