diff options
author | Matěj Cepl <mcepl@redhat.com> | 2012-04-11 11:38:06 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2012-04-11 11:38:06 +0200 |
commit | 03a01c78c630251416a6e21ad797158d9d16081b (patch) | |
tree | cfdca481801771db29acda4c7d297bc9f1e0dc42 /data/lib/bugzillaDOMFunctions.js | |
parent | 3476e68c41e5a106a3f514c411ff93bfe0ad61a4 (diff) | |
download | bugzilla-triage-03a01c78c630251416a6e21ad797158d9d16081b.tar.gz |
Clean superfluous console.log calls and update HACKING
With debugging switched off the addons should generate nothing on the
console.
Diffstat (limited to 'data/lib/bugzillaDOMFunctions.js')
-rw-r--r-- | data/lib/bugzillaDOMFunctions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/lib/bugzillaDOMFunctions.js b/data/lib/bugzillaDOMFunctions.js index be30a3e..ae4b01d 100644 --- a/data/lib/bugzillaDOMFunctions.js +++ b/data/lib/bugzillaDOMFunctions.js @@ -198,7 +198,7 @@ function createNewButton (location, after, cmdObj) { // protection against double-firings if (document.getElementById(newId)) { - console.log("Element with id " + newId + " already exists!"); + console.warning("Element with id " + newId + " already exists!"); return ; } |