mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 23:08:39 +09:00
1283712 - Part 11.1: Show notes in devtools console.
This commit is contained in:
parent
700a57c289
commit
9f71d02fcf
7 changed files with 87 additions and 4 deletions
|
|
@ -165,6 +165,7 @@ function transformPacket(packet) {
|
|||
stacktrace: pageError.stacktrace ? pageError.stacktrace : null,
|
||||
frame,
|
||||
exceptionDocURL: pageError.exceptionDocURL,
|
||||
notes: pageError.notes,
|
||||
});
|
||||
}
|
||||
|
||||
|
|
@ -185,7 +186,8 @@ function transformPacket(packet) {
|
|||
exceptionMessage: messageText,
|
||||
exceptionDocURL,
|
||||
frame,
|
||||
result: parameters
|
||||
result: parameters,
|
||||
notes,
|
||||
} = packet;
|
||||
|
||||
const level = messageText ? MESSAGE_LEVEL.ERROR : MESSAGE_LEVEL.LOG;
|
||||
|
|
@ -197,6 +199,7 @@ function transformPacket(packet) {
|
|||
parameters,
|
||||
exceptionDocURL,
|
||||
frame,
|
||||
notes,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue