We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5bd9c9 commit 1029ae7Copy full SHA for 1029ae7
1 file changed
src/client/debugger/DebugClients/LocalDebugClient.ts
@@ -120,11 +120,8 @@ export class LocalDebugClient extends DebugClient {
120
});
121
this.pyProc.stderr.setEncoding("utf8");
122
this.pyProc.stderr.on("data", error => {
123
- // TODO: This condition makes no sense (refactor)
124
- if (!this.debugServer && this.debugServer.IsRunning) {
125
- return;
126
- }
127
- this.displayError(error);
+ // We don't need to display the errors as stderr output is being captured by debugger
+ // and it gets sent out to the debug client
128
129
this.pyProc.stdout.on("data", d => {
130
// This is necessary so we read the stdout of the python process
0 commit comments