From 4f8cc214636226ecc8ea2b830435855c067aea2e Mon Sep 17 00:00:00 2001 From: Nikolaos Ioannou Date: Sun, 27 Oct 2019 21:23:38 +0100 Subject: [PATCH] changed a debug message --- autoconfirm.js | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/autoconfirm.js b/autoconfirm.js index 741bcfba..b95ca07f 100644 --- a/autoconfirm.js +++ b/autoconfirm.js @@ -180,12 +180,7 @@ function tryClickVideoPlayer() { document.querySelector(unpauseElement).click(); videoActed = true; setTimeout(() => (videoActed = false), resetActedTime); - debug( - getTimestamp() + - ' ' + - document.querySelector('head title').innerHTML + - ' Detected paused video and clicked it to continue!' - ); + debug('Clicked video!'); } } @@ -205,11 +200,6 @@ function tryClickDialog() { .click(); dialogActed = true; setTimeout(() => (dialogActed = false), resetActedTime); - debug( - getTimestamp() + - ' ' + - document.querySelector('head title').innerHTML + - ' Confirmed watching in dialog!' - ); + debug('Clicked dialog!'); } }