Merge pull request #27 from sharelatex/ja-quieten-logs

Don't log out doc lines and ranges
This commit is contained in:
James Allen 2017-09-20 09:49:55 +02:00 committed by GitHub
commit 122a0628d9
2 changed files with 2 additions and 2 deletions

View file

@ -98,7 +98,7 @@ module.exports = DocManager =
update.lines = lines
if updateRanges
update.ranges = ranges
logger.log { project_id, doc_id, oldDoc: doc, update: update }, "updating doc lines and ranges"
logger.log { project_id, doc_id, oldDoc: doc }, "updating doc lines and ranges"
modified = true
rev += 1 # rev will be incremented in mongo by MongoManager.upsertIntoDocCollection

View file

@ -12,7 +12,7 @@ module.exports = HttpController =
logger.log project_id: project_id, doc_id: doc_id, "getting doc"
DocManager.getFullDoc project_id, doc_id, (error, doc) ->
return next(error) if error?
logger.log doc: doc, "got doc"
logger.log {doc_id, project_id}, "got doc"
if !doc?
res.send 404
else if doc.deleted && !include_deleted