From 8254784da3a587a7db8973df03251715cc7c08ef Mon Sep 17 00:00:00 2001 From: egorvas Date: Fri, 15 Dec 2023 18:14:08 +0100 Subject: [PATCH] Add logging for successful requests --- MonitorClient.js | 1 + 1 file changed, 1 insertion(+) diff --git a/MonitorClient.js b/MonitorClient.js index 76fa8f7..e0087bd 100644 --- a/MonitorClient.js +++ b/MonitorClient.js @@ -668,6 +668,7 @@ class MonitorClient extends EventEmitter { throw new Error(`${errorMessages.rq_unkonwn_method} ${method}`); } if (data && data.body) { + this.log(data.timings); result = JSON.parse(data.body); } break;