From 5957bf89411f587d6070afadfd33cbacbc173b45 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Tue, 1 Mar 2011 22:52:30 +0100 Subject: Logger at least creates new records. --- lib/libbugzilla.js | 1 - lib/main.js | 1 - 2 files changed, 2 deletions(-) (limited to 'lib') 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); -- cgit