diff --git a/common/src/main/java/ctbrec/recorder/OnlineMonitor.java b/common/src/main/java/ctbrec/recorder/OnlineMonitor.java index 0970bd75..5aa56d67 100644 --- a/common/src/main/java/ctbrec/recorder/OnlineMonitor.java +++ b/common/src/main/java/ctbrec/recorder/OnlineMonitor.java @@ -38,8 +38,6 @@ public class OnlineMonitor extends Thread { private Map executors = new HashMap<>(); - // TODO divide models into buckets by their site in each iteration a model of each bucket can be testes in parallel - // this will speed up the testing, but not hammer the sites public OnlineMonitor(Recorder recorder) { this.recorder = recorder; setName("OnlineMonitor"); @@ -109,7 +107,7 @@ public class OnlineMonitor extends Thread { EventBusHolder.BUS.post(new ModelIsOnlineEvent(model)); } Model.State state = model.getOnlineState(false); - LOG.debug("Model online state: {}", state); + LOG.trace("Model online state: {} {}", model.getName(), state); Model.State oldState = states.getOrDefault(model, UNKNOWN); states.put(model, state); if (state != oldState) {