diff --git a/utils/livesync/src/livesync/imp.rs b/utils/livesync/src/livesync/imp.rs index 5434defd..ba38a753 100644 --- a/utils/livesync/src/livesync/imp.rs +++ b/utils/livesync/src/livesync/imp.rs @@ -1020,7 +1020,9 @@ impl LiveSync { ); let (res, jitter) = MutexGuard::unlocked(&mut state, || clock_id.wait()); - gst::trace!(CAT, imp: self, "Clock returned {res:?} {jitter}",); + gst::trace!(CAT, imp: self, "Clock returned {res:?} {}{}", + if jitter.is_negative() {"-"} else {""}, + gst::ClockTime::from_nseconds(jitter.unsigned_abs())); if res == Err(gst::ClockError::Unscheduled) { return Err(gst::FlowError::Flushing);