helia-coord 1.5.7 → 1.5.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -151,7 +151,7 @@ class PubsubUseCase {
151
151
  // Skip any repeated messages
152
152
  const shouldProcess = this.checkForDuplicateMsg(msg)
153
153
  if (!shouldProcess) {
154
- console.log('parseCoordPubsub() duplicate message.')
154
+ // console.log('parseCoordPubsub() duplicate message.')
155
155
  return false
156
156
  }
157
157
 
@@ -162,7 +162,7 @@ class PubsubUseCase {
162
162
  // Ignore this message if it originated from this IPFS node.
163
163
  const thisNodeId = this.adapters.ipfs.ipfsPeerId
164
164
  if (from === thisNodeId) {
165
- console.log('parseCoordPubsub() message came from this node.')
165
+ // console.log('parseCoordPubsub() message came from this node.')
166
166
  return false
167
167
  }
168
168
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "helia-coord",
3
- "version": "1.5.7",
3
+ "version": "1.5.8",
4
4
  "description": "A JS library for helping IPFS peers coordinate, find a common interest, and stay connected around that interest.",
5
5
  "main": "./index.js",
6
6
  "type": "module",