From 8af83dc4c3bdef6f09ec9ae0c9b2949f48ebdf80 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Tue, 30 Jan 2018 02:30:08 +0100 Subject: log unsent queued messages only on DEBUG --- src/util/mq.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/mq.c b/src/util/mq.c index 8d71359ac..33bbaa6ad 100644 --- a/src/util/mq.c +++ b/src/util/mq.c @@ -851,7 +851,7 @@ GNUNET_MQ_destroy (struct GNUNET_MQ_Handle *mq) ev); GNUNET_assert (0 < mq->queue_length); mq->queue_length--; - GNUNET_log (GNUNET_ERROR_TYPE_INFO, + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MQ destroy drops message of type %u\n", ntohs (ev->mh->type)); GNUNET_MQ_discard (ev); @@ -861,7 +861,7 @@ GNUNET_MQ_destroy (struct GNUNET_MQ_Handle *mq) /* we can only discard envelopes that * are not queued! */ mq->current_envelope->parent_queue = NULL; - GNUNET_log (GNUNET_ERROR_TYPE_INFO, + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "MQ destroy drops current message of type %u\n", ntohs (mq->current_envelope->mh->type)); GNUNET_MQ_discard (mq->current_envelope); -- cgit v1.2.3