We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdbb98c commit ac426b4Copy full SHA for ac426b4
extension/luaDebugSession.ts
@@ -289,7 +289,7 @@ export class LuaDebugSession extends LoggingDebugSession {
289
} else {
290
this.assert(this.process.stdout).on("data", data => { void this.onDebuggerOutput(data); });
291
}
292
- this.assert(this.process.stderr).on("data", data => { this.showOutput(data, OutputCategory.StdErr); });
+ this.assert(this.process.stderr).on("data", data => { this.showOutput(`${data}`, OutputCategory.StdErr); });
293
this.process.on("close", (code, signal) => this.onDebuggerTerminated(`${code !== null ? code : signal}`));
294
this.process.on("disconnect", () => this.onDebuggerTerminated("disconnected"));
295
this.process.on(
0 commit comments