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 e7c62cb1f4
commit e50686d5db

View file

@ -165,7 +165,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)
}