mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-10 07:34:07 -08:00
Fix another log.debug call
This commit is contained in:
parent
df4ce811d9
commit
7f46223d68
|
@ -374,7 +374,9 @@ class Monitor extends BeanModel {
|
|||
// beatInterval/retryInterval in the setTimeout further below
|
||||
if (previousBeat) {
|
||||
const msSinceLastBeat = dayjs.utc().valueOf() - dayjs.utc(previousBeat.time).valueOf();
|
||||
log.debug(`[${this.name}] msSinceLastBeat = ${msSinceLastBeat}`);
|
||||
|
||||
log.debug("monitor", `[${this.name}] msSinceLastBeat = ${msSinceLastBeat}`);
|
||||
|
||||
if (previousBeat.status !== UP || msSinceLastBeat > beatInterval * 1000 + bufferTime) {
|
||||
throw new Error("No heartbeat in the time window");
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue