Browse Source

SONAR-7168 replace System.err with LOG.trace in Monitor and Lifecycle

tags/5.4-M5
Sébastien Lesaint 8 years ago
parent
commit
e24f76490a

+ 8
- 4
server/sonar-process-monitor/src/main/java/org/sonar/process/monitor/Monitor.java View File

@@ -158,9 +158,9 @@ public class Monitor {

boolean waitForOneRestart() {
boolean restartRequested = awaitChildProcessesTermination();
trace("finished waiting, restartRequested=" + restartRequested);
trace("finished waiting, restartRequested={}", restartRequested);
if (restartRequested) {
trace("awaitTermination(restartor)=" + restartor);
trace("awaitTermination restartor={}", restartor);
awaitTermination(restartor);
}
return restartRequested;
@@ -203,7 +203,7 @@ public class Monitor {
private void cleanAfterTermination() {
trace("go to STOPPED...");
if (lifecycle.tryToMoveTo(State.STOPPED)) {
trace("await termination of restartWatcher...");
trace("await termination of restartWatcher and hardStopWatcher...");
// wait for restartWatcher and hardStopWatcher to cleanly stop
awaitTermination(restartWatcher, hardStopWatcher);
trace("restartWatcher done");
@@ -406,7 +406,11 @@ public class Monitor {
}

private static void trace(String s) {
System.err.println("APP: " + s);
LOG.trace(s);
}

private static void trace(String s, Object args) {
LOG.trace(s, args);
}

public static int getNextProcessId() {

+ 1
- 1
server/sonar-process/src/main/java/org/sonar/process/Lifecycle.java View File

@@ -82,7 +82,7 @@ public class Lifecycle {
this.state = to;
res = true;
}
LOG.info("tryToMoveTo from {} to {} => {}", currentState, to, res);
LOG.trace("tryToMoveTo from {} to {} => {}", currentState, to, res);
return res;
}


Loading…
Cancel
Save