We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 376b11c commit 61501b8Copy full SHA for 61501b8
src/api/service/controller/DebuggerController.ts
@@ -98,7 +98,10 @@ export class DebuggerController extends Controller {
98
private groupTrace(trace: DebugTrace): any {
99
const result = {}
100
for (const log of trace.result.structLogs) {
101
- result[log.pc] = log
+ if (!result[log.pc]) {
102
+ result[log.pc] = []
103
+ }
104
+ result[log.pc].push(log)
105
}
106
return result
107
0 commit comments