Removed debug logs & bump to version 0.9.0
This commit is contained in:
parent
1e298815c4
commit
81f8e6fcf1
3 changed files with 2 additions and 4 deletions
|
|
@ -8,11 +8,9 @@ export class MI2_Mago extends MI2_LLDB {
|
|||
let command = "stack-list-frames";
|
||||
this.sendCommand(command).then((result) => {
|
||||
let stack = result.resultRecords.results;
|
||||
this.log("stdout", JSON.stringify(result.resultRecords.results.length));
|
||||
let ret: Stack[] = [];
|
||||
let remaining = [];
|
||||
let addToStack = (element) => {
|
||||
this.log("stdout", JSON.stringify(element));
|
||||
let level = MINode.valueOf(element, "frame.level");
|
||||
let addr = MINode.valueOf(element, "frame.addr");
|
||||
let func = MINode.valueOf(element, "frame.func");
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ class MagoDebugSession extends MI2DebugSession {
|
|||
}
|
||||
|
||||
protected launchRequest(response: DebugProtocol.LaunchResponse, args: LaunchRequestArguments): void {
|
||||
this.miDebugger = new MI2_Mago(args.magomipath || "mago-mi", []);
|
||||
this.miDebugger = new MI2_Mago(args.magomipath || "mago-mi", ["-q"]);
|
||||
this.initDebugger();
|
||||
this.quit = false;
|
||||
this.attached = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue