Comment out noisy log. (#1757)

This commit is contained in:
Raja Subramanian
2023-05-31 06:35:25 +05:30
committed by GitHub
parent d598e06d9f
commit 13d599d2d9

View File

@@ -865,19 +865,21 @@ func (r *RTPStats) GetExpectedRTPTimestamp(at time.Time) (uint32, uint64, error)
if r.srNewest != nil {
minTS = r.srNewest.RTPTimestampExt
}
r.logger.Debugw(
"expected RTP timestamp",
"firstTime", r.firstTime.String(),
"checkAt", at.String(),
"timeDiff", timeDiff,
"firstRTP", r.extStartTS,
"expectedRTPDiff", expectedRTPDiff,
"expectedExtRTP", expectedExtRTP,
"expectedRTP", uint32(expectedExtRTP),
"minTS", minTS,
"highestTS", r.highestTS,
"highestTime", r.highestTime.String(),
)
/*
r.logger.Debugw(
"expected RTP timestamp",
"firstTime", r.firstTime.String(),
"checkAt", at.String(),
"timeDiff", timeDiff,
"firstRTP", r.extStartTS,
"expectedRTPDiff", expectedRTPDiff,
"expectedExtRTP", expectedExtRTP,
"expectedRTP", uint32(expectedExtRTP),
"minTS", minTS,
"highestTS", r.highestTS,
"highestTime", r.highestTime.String(),
)
*/
return uint32(expectedExtRTP), minTS, nil
}