From 5161ab0a8581ec3ffafa2ef5759c77a62b3f67cc Mon Sep 17 00:00:00 2001 From: Ladd Date: Tue, 31 Dec 2024 19:03:39 -0600 Subject: [PATCH] remove unnecessary debug statements --- __tests__/run/002-two-nodes.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/__tests__/run/002-two-nodes.ts b/__tests__/run/002-two-nodes.ts index f7a5a80..f52203d 100644 --- a/__tests__/run/002-two-nodes.ts +++ b/__tests__/run/002-two-nodes.ts @@ -16,13 +16,8 @@ describe('Run', () => { // Make the apps use the same pubsub topic so they can talk to each other pubSubTopic: apps[0].config.pubSubTopic, }); - debug('app[0].config.seedPeers before adding:', JSON.stringify(apps[0].config.seedPeers)); apps[0].config.seedPeers.push(apps[1].myRequestAddr); - debug('app[0].config.seedPeers after adding:', JSON.stringify(apps[0].config.seedPeers)); - debug('app[1].config.seedPeers before adding:', JSON.stringify(apps[1].config.seedPeers)); apps[1].config.seedPeers.push(apps[0].myRequestAddr); - debug('app[1].config.seedPeers after adding:', JSON.stringify(apps[1].config.seedPeers)); - debug('app[0].config.seedPeers after adding:', JSON.stringify(apps[0].config.seedPeers)); await Promise.all(apps.map((app) => app.start(false))); });