From 00f1d6c3d8c464b6612e340f95daf0291685fe3d Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 11 Mar 2026 12:42:06 +0100 Subject: [PATCH] modules: improve debug in profiler Also log the node that we are inspecting. --- src/modules/module-profiler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/module-profiler.c b/src/modules/module-profiler.c index b49629ba9..1709ec9a5 100644 --- a/src/modules/module-profiler.c +++ b/src/modules/module-profiler.c @@ -166,7 +166,7 @@ static void do_flush_event(void *data, uint64_t count) avail = spa_ringbuffer_get_read_index(&n->buffer, &idx); - pw_log_trace("%p: avail %d", impl, avail); + pw_log_trace("%p: node:%p avail %d", n, impl, avail); if (avail > 0) { size_t size = total + avail + sizeof(struct spa_pod_struct);