Merge pull request #51 from cwoac/reduce_doclines_logging

don't log doc contents if file is unchanged.
This commit is contained in:
Henry Oswald 2014-03-06 12:50:52 +00:00
commit 7efa51fb62

View file

@ -217,7 +217,7 @@ module.exports = ProjectEntityHandler =
logger.err "error putting doc #{doc_id} in project #{project_id} #{err}"
callback err
else if docComparitor.areSame docLines, doc.lines
logger.log sl_req_id: sl_req_id, docLines:docLines, project_id:project_id, doc_id:doc_id, rev:doc.rev, "old doc lines are same as the new doc lines, not updating them"
logger.log sl_req_id: sl_req_id, project_id:project_id, doc_id:doc_id, rev:doc.rev, "old doc lines are same as the new doc lines, not updating them"
callback()
else
logger.log sl_req_id: sl_req_id, project_id:project_id, doc_id:doc_id, docLines: docLines, oldDocLines: doc.lines, rev:doc.rev, "updating doc lines"