diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-03-01 22:52:30 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-03-01 22:54:12 +0100 |
commit | 5957bf89411f587d6070afadfd33cbacbc173b45 (patch) | |
tree | af7ddc655656d4caf0261e835854430e3b6d12df /lib | |
parent | b8b0a3b659141021e5f53fe55000eac22aa1d45a (diff) | |
download | bugzilla-triage-5957bf89411f587d6070afadfd33cbacbc173b45.tar.gz |
Logger at least creates new records.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libbugzilla.js | 1 | ||||
-rw-r--r-- | lib/main.js | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/lib/libbugzilla.js b/lib/libbugzilla.js index 23b6869..600d193 100644 --- a/lib/libbugzilla.js +++ b/lib/libbugzilla.js @@ -187,7 +187,6 @@ exports.getInstalledPackages = function getInstalledPackages(locationLoginObj, c var passwObj = getPassword(locationLoginObj.login, passDomain); // In order to avoid sending whole password to the content script, // we are sending just these two Booleans. - console.log("getInstalledPackages : passwObj = " + passwObj.toSource()); config.constantData.passwordState = { passAvailable: (passwObj.password !== null), withoutPass: passwObj.withoutPass diff --git a/lib/main.js b/lib/main.js index 022244f..accaa0e 100644 --- a/lib/main.js +++ b/lib/main.js @@ -43,7 +43,6 @@ function skipThisPage(doc) { } var messageHandler = exports.messageHandler = function messageHandler(worker, msg) { - console.log("messageHandler: msg = " + msg.toSource()); switch (msg.cmd) { case "LogMessage": console.log(msg.data); |