mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #14296 from overleaf/jpa-error-serializer
[logger] serialize "error" field with customer error serializer GitOrigin-RevId: 1cb588e84798c96286aec8f7f054570270a36b72
This commit is contained in:
parent
796a92841f
commit
6b051b260e
2 changed files with 15 additions and 11 deletions
|
@ -13,6 +13,7 @@ const ENTRY_FIELDS_TO_OMIT = [
|
|||
'pid',
|
||||
'msg',
|
||||
'err',
|
||||
'error',
|
||||
'req',
|
||||
'res',
|
||||
]
|
||||
|
@ -25,20 +26,22 @@ function convertLogEntry(entry) {
|
|||
|
||||
// Error information. In GCP, the stack trace goes in the message property.
|
||||
// This enables the error reporting feature.
|
||||
if (entry.err) {
|
||||
if (entry.err.info) {
|
||||
Object.assign(gcpEntry, entry.err.info)
|
||||
const err = entry.err || entry.error
|
||||
if (err) {
|
||||
if (err.info) {
|
||||
Object.assign(gcpEntry, err.info)
|
||||
}
|
||||
if (entry.err.code) {
|
||||
gcpEntry.code = entry.err.code
|
||||
if (err.code) {
|
||||
gcpEntry.code = err.code
|
||||
}
|
||||
if (entry.err.signal) {
|
||||
gcpEntry.signal = entry.err.signal
|
||||
if (err.signal) {
|
||||
gcpEntry.signal = err.signal
|
||||
}
|
||||
if (entry.err.stack !== '(no stack)') {
|
||||
gcpEntry.message = entry.err.stack
|
||||
} else if (entry.err.message) {
|
||||
gcpEntry.message = entry.err.message
|
||||
const stack = err.stack
|
||||
if (stack && stack !== '(no stack)') {
|
||||
gcpEntry.message = stack
|
||||
} else if (err.message) {
|
||||
gcpEntry.message = err.message
|
||||
}
|
||||
if (entry.name) {
|
||||
gcpEntry.serviceContext = { service: entry.name }
|
||||
|
|
|
@ -19,6 +19,7 @@ const LoggingManager = {
|
|||
name,
|
||||
serializers: {
|
||||
err: Serializers.err,
|
||||
error: Serializers.err,
|
||||
req: Serializers.req,
|
||||
res: Serializers.res,
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue