Fix another log.debug call

This commit is contained in:
Louis Lam 2022-05-28 23:22:44 +08:00
parent df4ce811d9
commit 7f46223d68

View File

@ -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 {