diff options
author | John McLear <john@mclear.co.uk> | 2013-12-09 18:13:07 +0000 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2013-12-09 18:13:07 +0000 |
commit | 3180b96213ab0e8f18be5370899bb515e0afcb72 (patch) | |
tree | 236e041b0eed0ec4582ff1f62bd3baab34b58244 /src/node | |
parent | 271dd663bf386f9fdcd6a5a8a835414054e9815b (diff) | |
download | etherpad-lite-3180b96213ab0e8f18be5370899bb515e0afcb72.zip |
Remove console logs
Diffstat (limited to 'src/node')
-rw-r--r-- | src/node/handler/ImportHandler.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/node/handler/ImportHandler.js b/src/node/handler/ImportHandler.js index 3e00be77..c751f8f9 100644 --- a/src/node/handler/ImportHandler.js +++ b/src/node/handler/ImportHandler.js @@ -103,9 +103,7 @@ exports.doImport = function(req, res, padId) // Logic for allowing external Import Plugins hooks.aCallAll("import", {srcFile: srcFile, destFile: destFile}, function(err, result){ if(ERR(err, callback)) return callback(); -console.log(result); if(result.length > 0){ // This feels hacky and wrong.. - console.log("Plugin handling import"); importHandledByPlugin = true; callback(); }else{ @@ -191,7 +189,6 @@ console.log(result); function(callback) { var fileEnding = path.extname(srcFile).toLowerCase(); if (abiword || fileEnding == ".htm" || fileEnding == ".html") { -console.log("trying", fileEnding, abiword, text) try{ importHtml.setPadHTML(pad, text); }catch(e){ |