mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #9625 from overleaf/jpa-logging-no-stack
[o-error] fallback from err.stack to err.message then '(no stack)' GitOrigin-RevId: 2b5e8af5791d92e618336a201f8c66ba23c8d46d
This commit is contained in:
parent
010476a60f
commit
ee70dc4a19
2 changed files with 13 additions and 1 deletions
|
@ -137,7 +137,7 @@ class OError extends Error {
|
|||
|
||||
const oError = /** @type{OError} */ (error)
|
||||
|
||||
let stack = oError.stack || '(no stack)'
|
||||
let stack = oError.stack || oError.message || '(no stack)'
|
||||
|
||||
if (Array.isArray(oError._oErrorTags) && oError._oErrorTags.length) {
|
||||
stack += `\n${oError._oErrorTags.map(tag => tag.stack).join('\n')}`
|
||||
|
|
|
@ -409,5 +409,17 @@ describe('utils', function () {
|
|||
expect(OError.getFullInfo(error.cause)).to.eql({ foo: 1 })
|
||||
}
|
||||
})
|
||||
|
||||
it('works when given non Error', function () {
|
||||
expect(OError.getFullStack({ message: 'Foo' })).to.equal('Foo')
|
||||
})
|
||||
|
||||
it('works when given non Error with tags', function () {
|
||||
const error = OError.tag({ message: 'Foo: bar' }, 'baz')
|
||||
expectFullStackWithoutStackFramesToEqual(error, [
|
||||
'Foo: bar',
|
||||
'TaggedError: baz',
|
||||
])
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue