remove excessive logging

GitOrigin-RevId: 62024bbe0415a4fdae66eb1b9c6707e5faec7cd1
This commit is contained in:
Ersun Warncke
2019-11-19 10:19:08 -04:00
committed by sharelatex
parent debb82960c
commit 2c335802ca
83 changed files with 26 additions and 955 deletions

View File

@@ -449,19 +449,6 @@ describe('ProjectEntityUpdateHandler', function() {
)
})
it('should log out the error', function() {
return this.logger.warn
.calledWith(
{
projectId: project_id,
docId: doc_id,
lines: this.docLines
},
'doc not found while updating doc lines'
)
.should.equal(true)
})
it('should return a not found error', function() {
return this.callback
.calledWith(sinon.match.instanceOf(Errors.NotFoundError))