Fix: change an ERR message to a DBG
authorDavid Goulet <dgoulet@efficios.com>
Wed, 19 Jun 2013 19:44:51 +0000 (15:44 -0400)
committerDavid Goulet <dgoulet@efficios.com>
Wed, 19 Jun 2013 19:44:51 +0000 (15:44 -0400)
Signed-off-by: David Goulet <dgoulet@efficios.com>
src/common/ust-consumer/ust-consumer.c

index cd6277f1aa42995735c95cbdf296e3cec55386cf..780a601f67e74b70b3632a6d489067d82e1359ef 100644 (file)
@@ -624,7 +624,13 @@ static int close_metadata(uint64_t chan_key)
 
        channel = consumer_find_channel(chan_key);
        if (!channel) {
-               ERR("UST consumer close metadata %" PRIu64 " not found", chan_key);
+               /*
+                * This is possible if the metadata thread has issue a delete because
+                * the endpoint point of the stream hung up. There is no way the
+                * session daemon can know about it thus use a DBG instead of an actual
+                * error.
+                */
+               DBG("UST consumer close metadata %" PRIu64 " not found", chan_key);
                ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
                goto error;
        }
This page took 0.02626 seconds and 4 git commands to generate.