log bucket growth (#4122)

This commit is contained in:
Raja Subramanian
2025-12-03 18:48:02 +05:30
committed by GitHub
parent 04b35eb626
commit 7158d98366
+8 -1
View File
@@ -1120,7 +1120,14 @@ func (b *Buffer) mayGrowBucket() {
cap = b.bucket.Grow()
}
if cap > oldCap {
b.logger.Debugw("grow bucket", "from", oldCap, "to", cap, "pps", pps)
b.logger.Infow(
"grow bucket",
"from", oldCap,
"to", cap,
"pps", pps,
"deltaInfo", deltaInfo,
"rtpStats", b.rtpStats,
)
}
}
}