From 4b534b8b3180cb3ac25d7b10fc7bcffdd263291b 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 2c8065d9b..473c94b23 100644 --- a/src/common/ust-consumer/ust-consumer.c +++ b/src/common/ust-consumer/ust-consumer.c @@ -1935,7 +1935,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