summaryrefslogtreecommitdiff
path: root/src/node/handler
diff options
context:
space:
mode:
authorJohn McLear <john@mclear.co.uk>2014-12-29 23:08:42 +0100
committerJohn McLear <john@mclear.co.uk>2014-12-29 23:08:42 +0100
commitb8648b4a49a5e3d050a3a414963c0877f49781c8 (patch)
tree661b0cefc9db7883c8d3a324b1e59647aa9bdeef /src/node/handler
parent1e0de620be85b7b4d8af1472a52a851933a921d0 (diff)
downloadetherpad-lite-b8648b4a49a5e3d050a3a414963c0877f49781c8.zip
remove error logging
Diffstat (limited to 'src/node/handler')
-rw-r--r--src/node/handler/ImportHandler.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/node/handler/ImportHandler.js b/src/node/handler/ImportHandler.js
index af4c01f1..65006fa7 100644
--- a/src/node/handler/ImportHandler.js
+++ b/src/node/handler/ImportHandler.js
@@ -125,9 +125,7 @@ exports.doImport = function(req, res, padId)
if(fileIsEtherpad){
// we do this here so we can see if the pad has quit ea few edits
padManager.getPad(padId, function(err, _pad){
- console.error(_pad);
var headCount = _pad.head;
- console.error(headCount);
if(headCount >= 10){
apiLogger.warn("Direct database Import attempt of a pad that already has content, we wont be doing this")
return callback("padHasData");