aboutsummaryrefslogtreecommitdiff
path: root/src/util/mq.c
diff options
context:
space:
mode:
authort3sserakt <t3ss@posteo.de>2017-11-08 20:07:06 +0100
committert3sserakt <t3ss@posteo.de>2017-11-08 20:07:06 +0100
commit12997f9148d918c434a4c4bae1549b250a78cac0 (patch)
treed4e2915ffb69c047db0a8b9365f52dd5cdfd2348 /src/util/mq.c
parentbf2169967b3c5a4a553c133a00dd7d35289f7a9d (diff)
downloadgnunet-12997f9148d918c434a4c4bae1549b250a78cac0.tar.gz
gnunet-12997f9148d918c434a4c4bae1549b250a78cac0.zip
changed log levels
Diffstat (limited to 'src/util/mq.c')
-rw-r--r--src/util/mq.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/util/mq.c b/src/util/mq.c
index 6ad6b82eb..793fd70ae 100644
--- a/src/util/mq.c
+++ b/src/util/mq.c
@@ -360,7 +360,7 @@ GNUNET_MQ_send (struct GNUNET_MQ_Handle *mq,
360 GNUNET_assert (NULL == mq->envelope_head); 360 GNUNET_assert (NULL == mq->envelope_head);
361 mq->current_envelope = ev; 361 mq->current_envelope = ev;
362 362
363 GNUNET_log (GNUNET_ERROR_TYPE_WARNING, 363 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
364 "mq: sending message of type %u, queue empty\n", 364 "mq: sending message of type %u, queue empty\n",
365 ntohs(ev->mh->type)); 365 ntohs(ev->mh->type));
366 366
@@ -460,8 +460,9 @@ impl_send_continue (void *cls)
460 mq->envelope_tail, 460 mq->envelope_tail,
461 mq->current_envelope); 461 mq->current_envelope);
462 462
463 GNUNET_log (GNUNET_ERROR_TYPE_WARNING, 463 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
464 "mq: sending message of type %u from queue\n", ntohs(mq->current_envelope->mh->type)); 464 "mq: sending message of type %u from queue\n",
465 ntohs(mq->current_envelope->mh->type));
465 466
466 mq->send_impl (mq, 467 mq->send_impl (mq,
467 mq->current_envelope->mh, 468 mq->current_envelope->mh,
@@ -946,8 +947,9 @@ GNUNET_MQ_send_cancel (struct GNUNET_MQ_Envelope *ev)
946 mq->envelope_tail, 947 mq->envelope_tail,
947 mq->current_envelope); 948 mq->current_envelope);
948 949
949 GNUNET_log (GNUNET_ERROR_TYPE_WARNING, 950 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
950 "mq: sending canceled message of type %u queue\n", ntohs(ev->mh->type)); 951 "mq: sending canceled message of type %u queue\n",
952 ntohs(ev->mh->type));
951 953
952 mq->send_impl (mq, 954 mq->send_impl (mq,
953 mq->current_envelope->mh, 955 mq->current_envelope->mh,