Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrançois Laignel <fengalin@free.fr>2022-03-22 20:46:28 +0300
committerSebastian Dröge <sebastian@centricular.com>2022-03-28 12:50:57 +0300
commite50686d5db4d311d8983864397c1ed14d5da7d33 (patch)
tree584fc6ce13abab7629d4e82e1f9c250196b9342c
parente7c62cb1f426543337ee294f7a50fd0f4f7d4a02 (diff)
ts: log max throttling when creating Context
-rw-r--r--generic/threadshare/src/runtime/executor/context.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/generic/threadshare/src/runtime/executor/context.rs b/generic/threadshare/src/runtime/executor/context.rs
index 433da4ff9..3b93c7939 100644
--- a/generic/threadshare/src/runtime/executor/context.rs
+++ b/generic/threadshare/src/runtime/executor/context.rs
@@ -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)
}