aboutsummaryrefslogtreecommitdiffstats
path: root/lib/util.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/util.js')
-rw-r--r--lib/util.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/util.js b/lib/util.js
index 02e95bb..4648ee9 100644
--- a/lib/util.js
+++ b/lib/util.js
@@ -35,7 +35,6 @@ exports.heir = function heir(p) {
exports.getBugNo = function getBugNo(url) {
- console.log("url = " + url);
var re = new RegExp(".*id=([0-9]+).*$");
var bugNo = null;
if (!url) {
@@ -45,7 +44,6 @@ exports.getBugNo = function getBugNo(url) {
if (reResult && reResult[1]) {
bugNo = reResult[1];
}
- console.log("bugNo = " + bugNo);
return bugNo;
};