From cdc82e99ff0bc872b5ee328fe1fdc9f159812b00 Mon Sep 17 00:00:00 2001 From: Dave Horton Date: Tue, 21 Mar 2023 12:35:02 -0400 Subject: [PATCH] add minor logging --- lib/utils/ws-requestor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/ws-requestor.js b/lib/utils/ws-requestor.js index 5b6be22f..448a9e46 100644 --- a/lib/utils/ws-requestor.js +++ b/lib/utils/ws-requestor.js @@ -346,7 +346,7 @@ class WsRequestor extends BaseRequestor { _recvCommand(msgid, command, call_sid, queueCommand, data) { // TODO: validate command - //this.logger.debug({msgid, command, call_sid, queueCommand, data}, 'received command'); + this.logger.debug({msgid, command, call_sid, queueCommand, data}, 'received command'); this.emit('command', {msgid, command, call_sid, queueCommand, data}); } }