From: Tobias Sachs Date: Sun, 1 Nov 2020 11:08:36 +0000 (+0100) Subject: remove debug output X-Git-Url: https://src.twobees.de/?p=tampermonkeyscripts.git;a=commitdiff_plain;h=49b07f92d02bb2e588a16a357584154953d9823a remove debug output --- diff --git a/AzureDevOpsChangesetCommentSearch.js b/AzureDevOpsChangesetCommentSearch.js index 7225574..9ca5bf9 100644 --- a/AzureDevOpsChangesetCommentSearch.js +++ b/AzureDevOpsChangesetCommentSearch.js @@ -22,7 +22,6 @@ let matchesFound = 0; let suchWasDelayed = function(){ - console.debug("blub"); if (timerSuche) { clearTimeout(timerSuche); } @@ -34,11 +33,10 @@ }; let requestNext = function(skipCnt){ - console.debug("get next. skip: "+ skipCnt); let xhr = new XMLHttpRequest(); xhr.onload = () => searchItems(xhr); xhr.onerror = function (e){ - console.info(`poll error: ${e.type}: ${e.loaded} bytes transferred\n` + JSON.stringify(e)); + console.warning(`poll error: ${e.type}: ${e.loaded} bytes transferred\n` + JSON.stringify(e)); }; xhr.open('GET', pollUrl + skipParm + skipCnt, true); xhr.send();