feat: ignore jar:file stack info
Signed-off-by: MiaoWoo <admin@yumc.pw>
This commit is contained in:
parent
44fab858d3
commit
dfff666284
@ -136,6 +136,7 @@ export class MiaoScriptConsole implements Console {
|
|||||||
stack = Arrays.asList(stack)
|
stack = Arrays.asList(stack)
|
||||||
}
|
}
|
||||||
stack.forEach(trace => {
|
stack.forEach(trace => {
|
||||||
|
if (trace.fileName.startsWith('jar:file:')) { return }
|
||||||
if (trace.className.startsWith('<')) {
|
if (trace.className.startsWith('<')) {
|
||||||
let { fileName, lineNumber } = this.readSourceMap(trace.fileName, trace.lineNumber)
|
let { fileName, lineNumber } = this.readSourceMap(trace.fileName, trace.lineNumber)
|
||||||
if (fileName.startsWith(root)) { fileName = fileName.split(root)[1] }
|
if (fileName.startsWith(root)) { fileName = fileName.split(root)[1] }
|
||||||
|
Loading…
Reference in New Issue
Block a user