mirror of
https://github.com/godotengine/godot-vscode-plugin.git
synced 2025-12-31 13:48:24 +03:00
Clarify the function of the extra integer given by the debugger (#245)
This closes #242.
This commit is contained in:
committed by
GitHub
parent
60cb0c57fc
commit
8115fba367
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user