Skip to content

Commit

Permalink
remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
adklempner committed Dec 4, 2023
1 parent 61e9949 commit 362a910
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
2 changes: 0 additions & 2 deletions packages/tests/src/node/node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,6 @@ export class NimGoNode {
WAKU_SERVICE_NODE_PARAMS
);
} catch (error) {
// eslint-disable-next-line no-console
console.log(error);
log.error("Nwaku node failed to start:", error);
await this.stop();
throw error;
Expand Down
5 changes: 0 additions & 5 deletions packages/tests/tests/light-push/multiple_pubsub.node.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -397,11 +397,6 @@ describe("Waku Light Push (Autosharding): Multiple PubsubTopics", function () {
payload: utf8ToBytes(messageText)
});

if (pushResponse.errors) {
console.log(customEncoder1.pubsubTopic);
console.log(pushResponse.errors);
console.log(pushResponse.recipients);
}
expect(pushResponse.errors).to.be.empty;
expect(pushResponse.recipients[0].toString()).to.eq(nimPeerId.toString());

Expand Down

0 comments on commit 362a910

Please sign in to comment.