aboutsummaryrefslogtreecommitdiffstats
path: root/data/rhlib/rhbzpage.js
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2011-05-05 12:27:10 +0200
committerMatěj Cepl <mcepl@redhat.com>2011-05-05 12:27:10 +0200
commit4b99c3d6a0efca79d94fc29398f0eab1fd75d492 (patch)
tree610d660aaac3f687ecc7cc8238d4d2a11f60c4a7 /data/rhlib/rhbzpage.js
parent2a8cfd4c1b55125d3211694496cea35cc9603ff9 (diff)
downloadbugzilla-triage-4b99c3d6a0efca79d94fc29398f0eab1fd75d492.tar.gz
Make my console.myDebug configurable via about:config preference.
That is the Boolean variable bugzilla-triage.setting.debug
Diffstat (limited to 'data/rhlib/rhbzpage.js')
-rw-r--r--data/rhlib/rhbzpage.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/data/rhlib/rhbzpage.js b/data/rhlib/rhbzpage.js
index 14fe19d..134ea79 100644
--- a/data/rhlib/rhbzpage.js
+++ b/data/rhlib/rhbzpage.js
@@ -131,7 +131,6 @@ function RHcentralCommandDispatch(cmdLabel, cmdParams) {
markBugTriaged();
break;
case "chipMagic":
- console.myDebug("cmdParams = " + cmdParams.toSource());
fillInWhiteBoard(cmdParams);
break;
// If we don't have it here, call superclass method
@@ -252,7 +251,6 @@ function fillInChipMagic(XlogID) {
function chipsetMagic (interestingLineArr) {
// parse Xorg.0.log
var cardStr = "";
- console.myDebug("interestingLineArr = " + interestingLineArr.toSource());
console.myDebug("interestingLineArr[1] = " + interestingLineArr[1]);
if (interestingLineArr.length >0) {
@@ -497,6 +495,7 @@ function RHBZinit() {
// Xorg.0.log must be text, otherwise we cannot parse it
return (/[xX].*log/.test(value[0]) && /text/.test(value[2]));
});
+
// Just add a link to every Xorg.0.log link analyzing it.
addCheckXorgLogLink(XorgLogAttList);