diff --git a/src/pipewire/filter.c b/src/pipewire/filter.c index 345bcfe31..8ae65d029 100644 --- a/src/pipewire/filter.c +++ b/src/pipewire/filter.c @@ -2042,7 +2042,7 @@ int pw_filter_trigger_process(struct pw_filter *filter) struct filter *impl = SPA_CONTAINER_OF(filter, struct filter, this); int res = 0; - pw_log_trace_fp("%p", impl); + pw_log_trace_fp("%p: driving:%d", impl, impl->driving); if (!impl->driving) { res = pw_loop_invoke(impl->main_loop, diff --git a/src/pipewire/stream.c b/src/pipewire/stream.c index 7f4bac171..7a078c6fe 100644 --- a/src/pipewire/stream.c +++ b/src/pipewire/stream.c @@ -2471,7 +2471,7 @@ int pw_stream_trigger_process(struct pw_stream *stream) struct stream *impl = SPA_CONTAINER_OF(stream, struct stream, this); int res = 0; - pw_log_trace_fp("%p", impl); + pw_log_trace_fp("%p: trigger:%d driving:%d", impl, impl->trigger, impl->driving); /* flag to check for old or new behaviour */ impl->using_trigger = true;