mirror of
https://github.com/godotengine/godot-vscode-plugin.git
synced 2025-12-31 13:48:24 +03:00
fix Godot4.x debug console print multiple logs into one line. (#571)
This commit is contained in:
@@ -393,8 +393,10 @@ export class ServerController {
|
||||
this.didFirstOutput = true;
|
||||
// this.request_scene_tree();
|
||||
}
|
||||
|
||||
debug.activeDebugConsole.appendLine(command.parameters[0]);
|
||||
const lines = command.parameters[0];
|
||||
for (const line of lines) {
|
||||
debug.activeDebugConsole.appendLine(line);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user