mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-04-06 14:27:34 +00:00
log standby mode as warning
This commit is contained in:
parent
df9daf99bf
commit
a21971429c
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ public class ClockWatcher {
|
|||
listeners.forEach(listener -> listener.onMissedSecondTick(missedMs));
|
||||
|
||||
if (missedMs > ClockWatcher.IDLE_TOLERANCE_MS) {
|
||||
log.info("We have been in standby mode for {} sec", missedMs / 1000);
|
||||
log.warn("We have been in standby mode for {} sec", missedMs / 1000);
|
||||
listeners.forEach(listener -> listener.onAwakeFromStandby(missedMs));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue