Make logs less noisy (#6062)

This commit is contained in:
Joao Fernandes 2018-02-23 11:49:59 -08:00 committed by GitHub
parent 158694b73f
commit d8a829662e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -56,11 +56,11 @@ function findMyTopic(tree)
} else {
if (branch[k].path == pageURL && !branch[k].nosync)
{
console.log(branch[k].path + ' was == ' + pageURL)
// console.log(branch[k].path + ' was == ' + pageURL)
thisIsIt = true;
break;
} else {
console.log(branch[k].path + ' was != ' + pageURL)
// console.log(branch[k].path + ' was != ' + pageURL)
}
}
}