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 <slomo@coaxion.net>2022-03-28 11:47:32 +0300
commit59ca466081204df18aab0f3ec271c6f0843b3d29 (patch)
tree4bbd6a7fad1ccdeaf320bd07f8d2f48181656533 /generic/threadshare/src/runtime
parent1ef9ae639802b2735acad08b15e307cf78496d50 (diff)
ts: log max throttling when creating Context
Diffstat (limited to 'generic/threadshare/src/runtime')
-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 17a8c840f..6ed22d45d 100644
--- a/generic/threadshare/src/runtime/executor/context.rs
+++ b/generic/threadshare/src/runtime/executor/context.rs
@@ -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)
}