diff options
Diffstat (limited to 'lib/libbugzilla.js')
-rw-r--r-- | lib/libbugzilla.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libbugzilla.js b/lib/libbugzilla.js index 196dbbe..c13c61d 100644 --- a/lib/libbugzilla.js +++ b/lib/libbugzilla.js @@ -262,8 +262,6 @@ exports.makeXMLRPCCall = function makeXMLRPCCall(url, login, method, params, cal if (!passwObj.password) { return null; // TODO this should happen, only when user presses Escape in password prompt } - console.log("makeXMLRPCCall :\n\turl = " + url + "\n\tlogin = " + login + "\n\tmethod = " + - method + "\n\tparams = " + params.toSource() + "\n\tcallback = " + callback.toSource()); var msg = new xrpc.XMLRPCMessage(method); params.forEach(function (par) { @@ -318,7 +316,7 @@ exports.initialize = function initialize(config, callback) { url: url, onComplete: function(response) { if (response.status == 200) { - config.gJSONData.constantData[title] = response.json; + config.constantData[title] = response.json; } } }).get(); |