improve logging of loss detection timer cancelation

This commit is contained in:
Marten Seemann 2019-11-23 10:49:37 +07:00
parent 92b898e811
commit 16a89a83d2

View file

@ -347,7 +347,7 @@ func (h *sentPacketHandler) setLossDetectionTimer() {
// Cancel the alarm if no packets are outstanding
if !h.hasOutstandingPackets() {
h.logger.Debugf("setLossDetectionTimer: canceling. Bytes in flight: %d", h.bytesInFlight)
h.logger.Debugf("Canceling loss detection timer. No packets in flight.")
h.alarm = time.Time{}
return
}