java/com.sap.sailing.landscape/src/com/sap/sailing/landscape/impl/ArchiveCandidateMonitoringBackgroundTask.java
... ...
@@ -182,10 +182,10 @@ public class ArchiveCandidateMonitoringBackgroundTask implements Runnable {
182 182
183 183
private void rescheduleCurrentCheckAfterFailureOrTimeout() throws MailException {
184 184
if (currentCheck.hasTimedOut()) {
185
- logger.severe("Check "+currentCheck+" failed and has timed out; giving up on candidate "+replicaSet.getMaster().getHost().getHostname());
185
+ logger.severe("Check \""+currentCheck+"\" failed and has timed out; giving up on candidate "+replicaSet.getMaster().getHost().getHostname());
186 186
notifyProcessOwnerCandidateFailedToBecomeReadyForProduction(); // this ends the re-scheduling loop
187 187
} else {
188
- logger.info("Check " + currentCheck + " failed with message \"" + currentCheck.getLastFailureMessage()
188
+ logger.info("Check \"" + currentCheck + "\" failed with message \"" + currentCheck.getLastFailureMessage()
189 189
+ "\" but has not yet timed out; re-scheduling to check again after "
190 190
+ currentCheck.getDelayAfterFailure());
191 191
executor.schedule(this, currentCheck.getDelayAfterFailure().asMillis(), TimeUnit.MILLISECONDS);