Skip to content

Commit 0f14176

Browse files
committed
removed unwanted messages
1 parent dbb599c commit 0f14176

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/client/debugger/DebugServers/RemoteDebugServer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ export class RemoteDebugServer extends BaseDebugServer {
5252
resolve(options);
5353
});
5454
this.socket.on("end", (ex) => {
55-
let msg = `Debugger client disconneced, ex`;
56-
that.debugSession.sendEvent(new OutputEvent(msg + "\n", "stderr"));
55+
// let msg = `Debugger client disconneced, ex`;
56+
// that.debugSession.sendEvent(new OutputEvent(msg + "\n", "stderr"));
5757
});
5858
this.socket.on("data", (buffer: Buffer) => {
5959
if (connected) {

src/client/debugger/PythonProcess.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ export class PythonProcess extends EventEmitter implements IPythonProcess {
235235
let index = this.breakpointCommands.findIndex(cmd => cmd.Id === breakpointId);
236236
if (index === -1) {
237237
// Hmm this is not possible, log this exception and carry on
238-
this.emit("error", "command.breakpoint.hit", `Uknown Breakpoit Id ${breakpointId}`);
238+
// this.emit("error", "command.breakpoint.hit", `Uknown Breakpoit Id ${breakpointId}`);
239239
return;
240240
}
241241

0 commit comments

Comments
 (0)