Skip to content

Commit

Permalink
Reduce logging, fix #17
Browse files Browse the repository at this point in the history
  • Loading branch information
michielbdejong committed Oct 3, 2024
1 parent 75f3645 commit 585324a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Messaging.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export class Messaging {
}
deliverMessage(from: string, to: string, message: TransferMessage | ProbeMessage | NackMessage | ScoutMessage | ProposeMessage | CommitMessage): void {
this.messagesSent++;
console.log('delivering message', from, to, message, this.messages.length);
// console.log('delivering message', from, to, message, this.messages.length);
return this.graph.getNode(to).receiveMessage(from, message);
}
sendMessage(from: string, to: string, message: TransferMessage | ProbeMessage | NackMessage | ScoutMessage | ProposeMessage | CommitMessage): void {
Expand Down

0 comments on commit 585324a

Please sign in to comment.