From 84f42f1fe76c3148dd39f3073e5a394f146f11a8 Mon Sep 17 00:00:00 2001 From: sukun Date: Fri, 26 Jul 2024 17:54:14 +0530 Subject: [PATCH] Reduce log level to trace for expected case When remote resets its write half of the stream, we can still send messages on it. This is not an error condition. --- association.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/association.go b/association.go index 2198fc6f..d498e155 100644 --- a/association.go +++ b/association.go @@ -2389,7 +2389,8 @@ func (a *Association) checkPartialReliabilityStatus(c *chunkPayloadData) { } s.lock.RUnlock() } else { - a.log.Errorf("[%s] stream %d not found)", a.name, c.streamIdentifier) + // Remote has reset its send side of the stream, we can still send data. + a.log.Tracef("[%s] stream %d not found, remote reset", a.name, c.streamIdentifier) } }