From 5e8b1598fa531e93a6eecb1032c42ee8794f9dd8 Mon Sep 17 00:00:00 2001 From: Christopher Dwyer-Perkins Date: Mon, 10 Feb 2025 18:55:17 -0400 Subject: [PATCH] Update util.ts start up logs in debug console are missing new lines --- src/util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.ts b/src/util.ts index fff52819..87dded56 100644 --- a/src/util.ts +++ b/src/util.ts @@ -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')); } }