@libp2p/utils 7.0.1 → 7.0.2

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.
@@ -145,7 +145,7 @@ class MockMuxer extends AbstractStreamMuxer {
145
145
  this.onRemoteStream(stream);
146
146
  }
147
147
  if (stream == null) {
148
- this.log.error(`No stream found for ${message.id}`);
148
+ this.log.error(`no stream found for ${message.id}`);
149
149
  return;
150
150
  }
151
151
  if (message.type === 'data') {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libp2p/utils",
3
- "version": "7.0.1",
3
+ "version": "7.0.2",
4
4
  "description": "Package to aggregate shared logic and dependencies for the libp2p ecosystem",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/utils#readme",
@@ -48,7 +48,7 @@
48
48
  "@chainsafe/netmask": "^2.0.0",
49
49
  "@libp2p/crypto": "^5.1.10",
50
50
  "@libp2p/interface": "^3.0.0",
51
- "@libp2p/logger": "^6.0.1",
51
+ "@libp2p/logger": "^6.0.2",
52
52
  "@multiformats/multiaddr": "^13.0.1",
53
53
  "@sindresorhus/fnv1a": "^3.1.0",
54
54
  "any-signal": "^4.1.1",
package/src/mock-muxer.ts CHANGED
@@ -242,7 +242,7 @@ class MockMuxer extends AbstractStreamMuxer<MockMuxedStream> {
242
242
  }
243
243
 
244
244
  if (stream == null) {
245
- this.log.error(`No stream found for ${message.id}`)
245
+ this.log.error(`no stream found for ${message.id}`)
246
246
  return
247
247
  }
248
248