Skip to content

Commit a4814c0

Browse files
committed
reduce verbosity of the "old data chunk" message
1 parent aeb9546 commit a4814c0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/net/SCTP/SctpDataReceiver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ public List<SctpDataFrame> OnDataChunk(SctpChunkView dataChunk)
241241
else if (_inOrderReceiveCount > 0 &&
242242
!IsNewer(_lastInOrderTSN, dataChunk.TSN))
243243
{
244-
logger.LogWarning("SCTP data receiver received an old data chunk with {TSN} " +
244+
logger.LogDebug("SCTP received an old data chunk with {TSN} " +
245245
"TSN when the expected TSN was {LastInOrderTSN}, ignoring.",
246246
dataChunk.TSN, _lastInOrderTSN + 1);
247247
}

0 commit comments

Comments
 (0)