aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--server/sonar-main/src/main/java/org/sonar/application/SchedulerImpl.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/sonar-main/src/main/java/org/sonar/application/SchedulerImpl.java b/server/sonar-main/src/main/java/org/sonar/application/SchedulerImpl.java
index 391a8bc7f63..91293573d82 100644
--- a/server/sonar-main/src/main/java/org/sonar/application/SchedulerImpl.java
+++ b/server/sonar-main/src/main/java/org/sonar/application/SchedulerImpl.java
@@ -226,6 +226,7 @@ public class SchedulerImpl implements Scheduler, ManagedProcessEventListener, Pr
private void stopAll() throws InterruptedException {
// order is important for non-cluster mode
+ LOG.info("Sonarqube has been requested to stop");
stopProcess(ProcessId.COMPUTE_ENGINE);
stopProcess(ProcessId.WEB_SERVER);
stopProcess(ProcessId.ELASTICSEARCH);
@@ -240,7 +241,7 @@ public class SchedulerImpl implements Scheduler, ManagedProcessEventListener, Pr
private void stopProcess(ProcessId processId) throws InterruptedException {
ManagedProcessHandler process = processesById.get(processId);
if (process != null) {
- LOG.debug("Stopping [{}]...", process.getProcessId().getHumanReadableName());
+ LOG.info("Stopping [{}] process...", process.getProcessId().getHumanReadableName());
process.stop();
}
}