From 749a5b3f83da6d2859d3ac964ec38342870d1e0f Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Date: Mon, 11 Feb 2019 13:46:46 -0500 Subject: [PATCH] Ust-consumer: Add channel key to error msg on channel clear Signed-off-by: Jonathan Rajotte --- src/common/ust-consumer/ust-consumer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/ust-consumer/ust-consumer.c b/src/common/ust-consumer/ust-consumer.c index 4fcdd392b..0b0b8af56 100644 --- a/src/common/ust-consumer/ust-consumer.c +++ b/src/common/ust-consumer/ust-consumer.c @@ -2121,7 +2121,7 @@ int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data *ctx, } else { ret = lttng_consumer_clear_channel(channel); if (ret) { - ERR("Clear channel failed"); + ERR("Clear channel failed key %" PRIu64, key); ret_code = ret; } -- 2.34.1