From 49b07f92d02bb2e588a16a357584154953d9823a Mon Sep 17 00:00:00 2001 From: Tobias Sachs Date: Sun, 1 Nov 2020 12:08:36 +0100 Subject: [PATCH] remove debug output --- AzureDevOpsChangesetCommentSearch.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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(); -- 2.39.2