Refine the log message printed after restoration

Closes gh-30876
This commit is contained in:
Sébastien Deleuze 2023-07-12 15:20:33 +02:00
parent 16b9640af2
commit 490ff0af5e
1 changed files with 1 additions and 1 deletions

View File

@ -551,7 +551,7 @@ public class DefaultLifecycleProcessor implements LifecycleProcessor, BeanFactor
this.barrier = null;
Duration timeTakenToRestart = Duration.ofNanos(System.nanoTime() - restartTime);
logger.info("Restart complete in " + timeTakenToRestart.toMillis() + " ms");
logger.info("Spring-managed lifecycle restart completed in " + timeTakenToRestart.toMillis() + " ms");
}
private void awaitPreventShutdownBarrier() {