Skip to content

Commit

Permalink
Update util.ts
Browse files Browse the repository at this point in the history
start up logs in debug console are missing new lines
  • Loading branch information
chrisdp authored Feb 10, 2025
1 parent 6c7fc97 commit 5e8b159
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class Util {
public log(message: string) {
if (this._debugSession) {
this._debugSession.sendEvent(new LogOutputEvent(`DebugServer: ${message}`));
this._debugSession.sendEvent(new OutputEvent(`DebugServer: ${message}`, 'stdout'));
this._debugSession.sendEvent(new OutputEvent(`DebugServer: ${message}\n`, 'stdout'));
}
}

Expand Down

0 comments on commit 5e8b159

Please sign in to comment.