js-executor log cleanup

This commit is contained in:
Sergey Matvienko 2022-07-06 19:08:06 +03:00
parent 4968d0101c
commit b9a7d4a6d9

View File

@ -65,15 +65,15 @@ async function pushMessageToSendLater(message) {
function sendLoopWithLinger() { function sendLoopWithLinger() {
if (sendLoopInstance) { if (sendLoopInstance) {
clearTimeout(sendLoopInstance); clearTimeout(sendLoopInstance);
} else { // } else {
logger.debug("Starting new send loop with linger [%s]", linger) // logger.debug("Starting new send loop with linger [%s]", linger)
} }
sendLoopInstance = setTimeout(sendMessagesAsBatch, linger); sendLoopInstance = setTimeout(sendMessagesAsBatch, linger);
} }
async function sendMessagesAsBatch(isImmediately) { async function sendMessagesAsBatch(isImmediately) {
if (sendLoopInstance) { if (sendLoopInstance) {
logger.debug("sendMessagesAsBatch: Clear sendLoop scheduler. Starting new send loop with linger [%s]", linger); // logger.debug("sendMessagesAsBatch: Clear sendLoop scheduler. Starting new send loop with linger [%s]", linger);
clearTimeout(sendLoopInstance); clearTimeout(sendLoopInstance);
} }
sendLoopInstance = null; sendLoopInstance = null;