mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
avoid logging doclines in getProjectDocs
This commit is contained in:
parent
80be5adc0d
commit
860537146b
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ module.exports = HttpController =
|
|||
ProjectManager.getProjectDocs project_id, excludeVersions, (error, result) ->
|
||||
timer.done()
|
||||
return next(error) if error?
|
||||
logger.log project_id: project_id, result: result, "got docs via http"
|
||||
logger.log project_id: project_id, result: ("#{doc._id}:#{doc.rev}" for doc in result), "got docs via http"
|
||||
res.send result
|
||||
|
||||
setDoc: (req, res, next = (error) ->) ->
|
||||
|
|
Loading…
Reference in a new issue