mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
Merge branch 'bg-prevent-logging-of-oprangenotavailable-to-sentry'
This commit is contained in:
commit
f7787e5976
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ module.exports = DispatchManager =
|
|||
# log everything except OpRangeNotAvailable errors, these are normal
|
||||
if error?
|
||||
# downgrade OpRangeNotAvailable and "Delete component" errors so they are not sent to sentry
|
||||
logAsWarning = (error instanceof Errors.OpRangeNotAvailableError) || error.message?.match(/^Delete component/)
|
||||
logAsWarning = (error instanceof Errors.OpRangeNotAvailableError) || ((typeof error is' string') && error.match(/^Delete component/))
|
||||
if logAsWarning
|
||||
logger.warn err: error, project_id: project_id, doc_id: doc_id, "error processing update"
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue