aboutsummaryrefslogtreecommitdiffstats
path: root/data/lib/util.js
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2011-04-21 23:58:00 +0200
committerMatěj Cepl <mcepl@redhat.com>2011-04-21 23:58:00 +0200
commitbbb82ff2393d9a2f0c6fd7a3b3edb496effa9a36 (patch)
tree6dad7e01e56db7c42eb3008ce983bf671df2894f /data/lib/util.js
parentbf9f8023e823a0bac6ce66744f94c7e077e446f1 (diff)
downloadbugzilla-triage-bbb82ff2393d9a2f0c6fd7a3b3edb496effa9a36.tar.gz
Fix nvidia.
What to do when nvidia chipset is using VESA drivers or something similar. Driver names are not 100% proxy for the card type.
Diffstat (limited to 'data/lib/util.js')
-rw-r--r--data/lib/util.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/data/lib/util.js b/data/lib/util.js
index 51f3704..cf916ea 100644
--- a/data/lib/util.js
+++ b/data/lib/util.js
@@ -352,6 +352,9 @@ NotLoggedinException.prototype.toString = function () {
return this.name + ': "' + this.message + '"';
};
+// Are we debugging?
+var debugFlag = true;
+
console.myDebug = function myDebug(str) {
if (debugFlag) {
console.log(str);