Skip to content

Commit

Permalink
Line break on output
Browse files Browse the repository at this point in the history
  • Loading branch information
grahambates committed Jun 19, 2024
1 parent 719dc64 commit ec77e01
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/debugSession.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,9 @@ export class UAEDebugSession extends LoggingDebugSession {
});
});
this.gdb.on("end", this.shutdown.bind(this));
this.gdb.on("output", (msg) =>
this.sendEvent(new OutputEvent(msg, "console"))
);
this.gdb.on("output", (msg) => {
this.sendEvent(new OutputEvent(msg + "\n", "console"));
});
}

protected initializeRequest(
Expand Down

0 comments on commit ec77e01

Please sign in to comment.