You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Allow some small slop here, since receivedTime and srSentTime are only accurate to the nearest
// millisecond.
logger.warn(
"Negative rtt value: $rtt ms, remote processing delay was "+
"$remoteProcessingDelay (${reportBlock.delaySinceLastSr}), srSentTime was $srSentTime, "+
"received time was $receivedTime"
)
I wonder, if the slop value of 1.0ms is small enough and if there might be "other" reasons that lead to the point of view of a "time-travel paradoxon", i.e. the answer is delivered before the question was asked.
I suggest either to raise the slop value and/or choose a lower logging level, i.e. INFO or even DEBUG for this message. Because of the only instrument I see is to quite this complete logger by the logging configuration and this will cut off "valid" WARNINGs.
The text was updated successfully, but these errors were encountered:
In our production environment, messages like
really flood the log. This message are produced by
jitsi-media-transform/src/main/kotlin/org/jitsi/nlj/stats/EndpointConnectionStats.kt
Lines 168 to 175 in c833b08
I wonder, if the slop value of 1.0ms is small enough and if there might be "other" reasons that lead to the point of view of a "time-travel paradoxon", i.e. the answer is delivered before the question was asked.
I suggest either to raise the slop value and/or choose a lower logging level, i.e. INFO or even DEBUG for this message. Because of the only instrument I see is to quite this complete logger by the logging configuration and this will cut off "valid" WARNINGs.
The text was updated successfully, but these errors were encountered: