remove unnecessary debug statements

This commit is contained in:
Ladd Hoffman 2024-12-31 19:03:39 -06:00
parent fefd7000f4
commit 5161ab0a85
1 changed files with 0 additions and 5 deletions

View File

@ -16,13 +16,8 @@ describe('Run', () => {
// Make the apps use the same pubsub topic so they can talk to each other // Make the apps use the same pubsub topic so they can talk to each other
pubSubTopic: apps[0].config.pubSubTopic, 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); 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); 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))); await Promise.all(apps.map((app) => app.start(false)));
}); });