From: Jonathan Rajotte Date: Mon, 11 Feb 2019 18:46:46 +0000 (-0500) Subject: Ust-consumer: Add channel key to error msg on channel clear X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=commitdiff_plain;h=749a5b3f83da6d2859d3ac964ec38342870d1e0f;hp=7b30f09f60eebbac6b8bdbc596aadc1eb4058ae1 Ust-consumer: Add channel key to error msg on channel clear Signed-off-by: Jonathan Rajotte --- 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; }