From ca99ac2b383b9c2debb1d8fb3250504d2560bb0b Mon Sep 17 00:00:00 2001 From: Dmitry Bedrin Date: Thu, 14 May 2020 14:13:03 +0300 Subject: [PATCH] Update polling.js --- polling.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polling.js b/polling.js index f22bb83..d8e4a98 100644 --- a/polling.js +++ b/polling.js @@ -52,7 +52,7 @@ module.exports = Thing.mixin(Parent => class extends Parent { // Perform poll async - and schedule new poll after it has resolved return Promise.resolve(this.poll(isInitial)) .catch(ex => { - this.debug('Could not poll:', ex); + console.log('Could not poll:', ex); return new Error('Polling issue'); }) .then(r => {