Skip to content

Commit

Permalink
chore: reduce debug message spam for high cluster count bots
Browse files Browse the repository at this point in the history
  • Loading branch information
Deivu committed Jul 6, 2024
1 parent d72e236 commit 667bd8b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/ipc/BaseIpc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ export abstract class BaseIpc {
public send(transportable: Transportable): Promise<unknown|undefined> {
return new Promise((resolve, reject) => {
if (!this.available()) {
this.manager.emit(LibraryEvents.DEBUG, 'IPC tried to send a message, but the ipc communication is not yet ready');
return resolve(undefined);
}
const repliable = transportable.repliable || false;
Expand Down

0 comments on commit 667bd8b

Please sign in to comment.