Remove console logs

This commit is contained in:
John McLear 2013-12-09 18:13:07 +00:00
parent 271dd663bf
commit 3180b96213
1 changed files with 0 additions and 3 deletions

View File

@ -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){