Skip to content

Commit

Permalink
Merge pull request #33569 from Artur-
Browse files Browse the repository at this point in the history
* pr/33569:
  Polish 'Fix typo in LocalDevToolsAutoConfiguration logging'
  Fix typo in LocalDevToolsAutoConfiguration logging

Closes gh-33569
  • Loading branch information
philwebb committed Dec 22, 2022
2 parents 4610fe3 + 42aa661 commit b7eb7f2
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.format("Change set: %s", event.getChangeSet()));
Restarter.getInstance().restart(new FileWatchingFailureHandler(this.fileSystemWatcherFactory));
}
}
Expand Down

0 comments on commit b7eb7f2

Please sign in to comment.