diff --git a/package.json b/package.json index 1c60502..c95dc78 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "topjs-debugger", "displayName": "TopJS Debugger", - "version": "0.0.4", + "version": "0.0.5", "publisher": "AbbyCin", "description": "TopJS debugger extension for VS Code.", "author": { diff --git a/src/topjsDebug.js b/src/topjsDebug.js index 89d54ad..3241e38 100644 --- a/src/topjsDebug.js +++ b/src/topjsDebug.js @@ -216,7 +216,7 @@ class TopJSDebugSession extends vscode_debugadapter.LoggingDebugSession { } process.exit(1); }); - this.log([args.runtimeExecutable, `--remote-debugging-port=${args.port}`, Path.basename(args.program)].join(' ')); + this.log([args.runtimeExecutable, `--remote-debugging-port=${args.port}`, Path.basename(args.program), '\n'].join(' ')); } validateArgs(args) {