Skip to content

Commit

Permalink
GH-11196 Remove dev/debug logoutput from IPCChannel (#11197)
Browse files Browse the repository at this point in the history
Fixes #11196

Contributed on behalf of STMicroelectronics
  • Loading branch information
tortmayr authored May 25, 2022
1 parent f2bdd95 commit 1a6c736
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/core/src/node/messaging/ipc-channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ export class IPCChannel implements Channel {
this.setupProcess();
}
this.messagePipe.onMessage(message => {
console.log(`IPChannel: fire on message with ${message.length}`);
this.onMessageEmitter.fire(() => new Uint8ArrayReadBuffer(message));
});
this.toDispose.pushAll([this.onCloseEmitter, this.onMessageEmitter, this.onErrorEmitter]);
Expand Down

0 comments on commit 1a6c736

Please sign in to comment.