mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-01-23 09:28:09 +00:00
ts: log max throttling when creating Context
This commit is contained in:
parent
e7c62cb1f4
commit
e50686d5db
1 changed files with 6 additions and 1 deletions
|
@ -165,7 +165,12 @@ impl Context {
|
||||||
let context = Context(Scheduler::start(context_name, wait));
|
let context = Context(Scheduler::start(context_name, wait));
|
||||||
contexts.insert(context_name.into(), context.downgrade());
|
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)
|
Ok(context)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue