Clarify the function of the extra integer given by the debugger (#245)

This closes #242.
This commit is contained in:
Nils "Linkpy" Reid
2020-10-27 17:44:45 +01:00
committed by GitHub
parent 60cb0c57fc
commit 8115fba367

View File

@@ -29,7 +29,13 @@ export class Mediator {
let lines: string[] = parameters;
lines.forEach((line) => {
this.output.appendLine(line);
let message_content: string = line[0];
//let message_kind: number = line[1];
// OutputChannel doesn't give a way to distinguish between a
// regular string (message_kind == 0) and an error string (message_kind == 1).
this.output.appendLine(message_content);
});
break;