Reduce log level again

This commit is contained in:
0xb00bface 2020-08-09 14:26:12 +02:00
parent daefe1a7d4
commit a0779c118d
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ public class OnlineMonitor extends Thread {
model.setLastSeen(Instant.now());
}
Model.State state = model.getOnlineState(false);
LOG.debug("Model online state: {} {}", model.getName(), state);
LOG.trace("Model online state: {} {}", model.getName(), state);
Model.State oldState = states.getOrDefault(model, UNKNOWN);
states.put(model, state);
if (state != oldState) {