Skip to content

Commit

Permalink
message will directly output the content in the message without typin…
Browse files Browse the repository at this point in the history
…g the `Message:` (#1175)

## What have been changed
delete the debugger output `Message:`

## Issue mentioned
finish the open issue #1081.

## What will happen
message will directly output the content in the message without typing
the `Message:`
  • Loading branch information
colommar committed Feb 22, 2024
1 parent c23c2ae commit 7b56bdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vscode/src/debugger/output.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export function createDebugConsoleEventTarget(out: (message: string) => void) {
const eventTarget = new QscEventTarget(false);

eventTarget.addEventListener("Message", (evt) => {
out(`Message: ${evt.detail}`);
out(evt.detail);
});

eventTarget.addEventListener("DumpMachine", (evt) => {
Expand Down

0 comments on commit 7b56bdf

Please sign in to comment.