ts: log max throttling when creating Context

This commit is contained in:
François Laignel 2022-03-22 18:46:28 +01:00 committed by Sebastian Dröge
parent 1ef9ae6398
commit 59ca466081

View file

@ -163,7 +163,12 @@ impl Context {
let context = Context(Scheduler::start(context_name, wait));
contexts.insert(context_name.into(), context.downgrade());
gst::debug!(RUNTIME_CAT, "New Context '{}'", context.name());
gst::debug!(
RUNTIME_CAT,
"New Context '{}' throttling {:?}",
context.name(),
wait,
);
Ok(context)
}