From b86f1412732ee2fcd8a3c5af226bc55d4a1c484b Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Thu, 15 Feb 2018 11:41:07 +0100 Subject: [PATCH] add more debug info --- src/modules/module-client-node/client-node.c | 2 +- src/pipewire/data-loop.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/modules/module-client-node/client-node.c b/src/modules/module-client-node/client-node.c index 9ce8ad2e5..ccc063bd2 100644 --- a/src/modules/module-client-node/client-node.c +++ b/src/modules/module-client-node/client-node.c @@ -324,7 +324,7 @@ do_update_port(struct proxy *this, port->have_format = false; - spa_log_info(this->log, "proxy %p: update %d params", this, n_params); + spa_log_info(this->log, "proxy %p: port %u update %d params", this, port_id, n_params); for (i = 0; i < port->n_params; i++) free(port->params[i]); port->n_params = n_params; diff --git a/src/pipewire/data-loop.c b/src/pipewire/data-loop.c index 9c4dda28d..05eeeac51 100644 --- a/src/pipewire/data-loop.c +++ b/src/pipewire/data-loop.c @@ -47,6 +47,7 @@ static void *do_loop(void *user_data) static void do_stop(void *data, uint64_t count) { struct pw_data_loop *this = data; + pw_log_debug("data-loop %p: stopping", this); this->running = false; }