Skip to content

Commit

Permalink
fix: switch missing stream log to trace (#90)
Browse files Browse the repository at this point in the history
This happens frequently when a stream has been closed locally but the remote is still sending data and makes the logs very chatty.
  • Loading branch information
achingbrain authored Sep 25, 2024
1 parent 45c365e commit 96bfe96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/muxer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ export class YamuxMuxer implements StreamMuxer {
}
await readData()
} else {
this.log?.('frame for missing stream id=%s', streamID)
this.log?.trace('frame for missing stream id=%s', streamID)
}
return
}
Expand Down

0 comments on commit 96bfe96

Please sign in to comment.