Fix log.debug calls

pull/1428/head
Aram Akhavan 2 years ago committed by GitHub
parent cd3fbc80b4
commit ab4edf2092
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -348,7 +348,7 @@ class Monitor extends BeanModel {
bean.msg = dnsMessage; bean.msg = dnsMessage;
bean.status = UP; bean.status = UP;
} else if (this.type === "push") { // Type: Push } else if (this.type === "push") { // Type: Push
log.debug(`[${this.name}] Checking monitor at ${dayjs().format("YYYY-MM-DD HH:mm:ss.SSS")}`); log.debug("monitor", `[${this.name}] Checking monitor at ${dayjs().format("YYYY-MM-DD HH:mm:ss.SSS")}`);
const bufferTime = 1000; // 1s buffer to accommodate clock differences const bufferTime = 1000; // 1s buffer to accommodate clock differences
// Fix #922, since previous heartbeat could be inserted by API, it should get from database // Fix #922, since previous heartbeat could be inserted by API, it should get from database
previousBeat = await Monitor.getPreviousHeartbeat(this.id); previousBeat = await Monitor.getPreviousHeartbeat(this.id);
@ -368,7 +368,7 @@ class Monitor extends BeanModel {
} }
// No need to insert successful heartbeat for push type, so end here // No need to insert successful heartbeat for push type, so end here
retries = 0; retries = 0;
log.debug(`[${this.name}] timeout = ${timeout}`); log.debug("monitor", `[${this.name}] timeout = ${timeout}`);
this.heartbeatInterval = setTimeout(beat, timeout); this.heartbeatInterval = setTimeout(beat, timeout);
return; return;
} }

Loading…
Cancel
Save