mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-01-09 10:45:27 +00:00
ts: log max throttling when creating Context
This commit is contained in:
parent
1ef9ae6398
commit
59ca466081
1 changed files with 6 additions and 1 deletions
|
@ -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)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue