Skip to content

Commit

Permalink
Merge branch '2.7.x'
Browse files Browse the repository at this point in the history
Closes gh-33615
  • Loading branch information
philwebb committed Dec 22, 2022
2 parents c67915f + b7eb7f2 commit 94819ee
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -209,7 +209,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 94819ee

Please sign in to comment.