]> src.twobees.de Git - tampermonkeyscripts.git/commitdiff
remove debug output
authorTobias Sachs <git-pngdhxpf-ts@twobees.de>
Sun, 1 Nov 2020 11:08:36 +0000 (12:08 +0100)
committerTobias Sachs <git-pngdhxpf-ts@twobees.de>
Sun, 1 Nov 2020 11:08:36 +0000 (12:08 +0100)
AzureDevOpsChangesetCommentSearch.js

index 722557405954f8beb65add10a7bfebedee77589c..9ca5bf909c4f5116f2084b129dcc6ed11b74cf2f 100644 (file)
@@ -22,7 +22,6 @@
     let matchesFound = 0;
 
     let suchWasDelayed = function(){
-        console.debug("blub");
         if (timerSuche) {
             clearTimeout(timerSuche);
         }
     };
 
     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();