diff options
author | John McLear <john@mclear.co.uk> | 2014-12-30 00:10:08 +0100 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2014-12-30 00:10:08 +0100 |
commit | 99a239fa9abf5df4c16aff0259ad4bf32256ad99 (patch) | |
tree | 339c7d23b0f7357431b6de97b369cb3196ab31cc /src/node/handler/ExportHandler.js | |
parent | 0676d2fe24b5fe4bd1b84ffad4c23e2fd4029d75 (diff) | |
download | etherpad-lite-99a239fa9abf5df4c16aff0259ad4bf32256ad99.zip |
remove console log
Diffstat (limited to 'src/node/handler/ExportHandler.js')
-rw-r--r-- | src/node/handler/ExportHandler.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/node/handler/ExportHandler.js b/src/node/handler/ExportHandler.js index 23d1cb10..39e7f564 100644 --- a/src/node/handler/ExportHandler.js +++ b/src/node/handler/ExportHandler.js @@ -59,7 +59,6 @@ exports.doExport = function(req, res, padId, type) //if this is a plain text export, we can do this directly // We have to over engineer this because tabs are stored as attributes and not plain text if(type == "etherpad"){ - console.log("Exporting Etherpad"); exportEtherpad.getPadRaw(padId, function(err, pad){ if(!err){ res.send(pad); |