aboutsummaryrefslogtreecommitdiffstats
path: root/lib/util.js
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2010-07-19 16:52:19 +0200
committerMatěj Cepl <mcepl@redhat.com>2010-07-19 17:46:20 +0200
commit8db90e886bc25f382145a3af543959021851e5cd (patch)
tree6b48b8350bb209e686e6ec2d2d076a40ab1bc42b /lib/util.js
parentfcfbd3f7f01df5c67182366dc25e41567addc3b8 (diff)
downloadbugzilla-triage-8db90e886bc25f382145a3af543959021851e5cd.tar.gz
Allow empty Xorg log analysis
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;
};