aboutsummaryrefslogtreecommitdiffstats
path: root/data/lib/util.js
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2011-04-21 16:26:10 +0200
committerMatěj Cepl <mcepl@redhat.com>2011-06-05 14:45:52 +0200
commit9a2e436b841d7c0d9d162b1d386a4316c7feb62e (patch)
tree5dd687bdcfb1368bb8b59c46d8d6fe19962ad99b /data/lib/util.js
parent15c6a56eba1600ed23c29c6d769e49221fb000ce (diff)
downloadbugzilla-triage-9a2e436b841d7c0d9d162b1d386a4316c7feb62e.tar.gz
debugFlag must be in util.js as well.
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 fa111aa..5b628cf 100644
--- a/data/lib/util.js
+++ b/data/lib/util.js
@@ -356,6 +356,9 @@ NotLoggedinException.prototype.toString = function () {
return this.name + ': "' + this.message + '"';
};
+// Are we debugging?
+var debugFlag = false;
+
console.myDebug = function myDebug(str) {
if (debugFlag) {
console.log(str);