From a3033ee2b75f6b4ec90468bb22c4d79f3c6c0a9b Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Fri, 9 Mar 2018 12:35:43 +0100 Subject: [PATCH] client-node: improve debug --- src/modules/module-client-node/client-node.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/module-client-node/client-node.c b/src/modules/module-client-node/client-node.c index a739916f0..0faf2795d 100644 --- a/src/modules/module-client-node/client-node.c +++ b/src/modules/module-client-node/client-node.c @@ -892,12 +892,12 @@ static int impl_node_process_output(struct spa_node *node) this = SPA_CONTAINER_OF(node, struct node, node); impl = this->impl; + pw_log_trace("client-node %p: process output %d", this, impl->out_pending); if (impl->out_pending) return SPA_STATUS_OK; impl->out_pending = true; - pw_log_trace("client-node %p: send process output", this); pw_client_node_transport_add_message(impl->transport, &PW_CLIENT_NODE_MESSAGE_INIT(PW_CLIENT_NODE_MESSAGE_PROCESS_OUTPUT)); do_flush(this);