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')); } }