X-Git-Url: https://src.twobees.de/?p=tampermonkeyscripts.git;a=blobdiff_plain;f=AzureDevOpsChangesetCommentSearch.js;fp=AzureDevOpsChangesetCommentSearch.js;h=9ca5bf909c4f5116f2084b129dcc6ed11b74cf2f;hp=722557405954f8beb65add10a7bfebedee77589c;hb=49b07f92d02bb2e588a16a357584154953d9823a;hpb=1da4262ba7abbe7f935257b4a44e25302866cee5 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();