aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/util')
-rw-r--r--src/util/mq.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/util/mq.c b/src/util/mq.c
index b09837459..40ac97bbe 100644
--- a/src/util/mq.c
+++ b/src/util/mq.c
@@ -273,7 +273,7 @@ GNUNET_MQ_handle_message (const struct GNUNET_MQ_MessageHandler *handlers,
273 break; 273 break;
274 } 274 }
275 } 275 }
276done: 276 done:
277 if (GNUNET_NO == handled) 277 if (GNUNET_NO == handled)
278 { 278 {
279 LOG (GNUNET_ERROR_TYPE_INFO, 279 LOG (GNUNET_ERROR_TYPE_INFO,
@@ -384,8 +384,9 @@ GNUNET_MQ_send (struct GNUNET_MQ_Handle *mq,
384 mq->current_envelope = ev; 384 mq->current_envelope = ev;
385 385
386 LOG (GNUNET_ERROR_TYPE_DEBUG, 386 LOG (GNUNET_ERROR_TYPE_DEBUG,
387 "sending message of type %u, queue empty (MQ: %p)\n", 387 "sending message of type %u and size %u, queue empty (MQ: %p)\n",
388 ntohs (ev->mh->type), 388 ntohs (ev->mh->type),
389 ntohs (ev->mh->size),
389 mq); 390 mq);
390 391
391 mq->send_impl (mq, 392 mq->send_impl (mq,
@@ -479,8 +480,10 @@ impl_send_continue (void *cls)
479 mq->current_envelope); 480 mq->current_envelope);
480 481
481 LOG (GNUNET_ERROR_TYPE_DEBUG, 482 LOG (GNUNET_ERROR_TYPE_DEBUG,
482 "sending message of type %u from queue\n", 483 "sending message of type %u and size %u from queue (MQ: %p)\n",
483 ntohs (mq->current_envelope->mh->type)); 484 ntohs (mq->current_envelope->mh->type),
485 ntohs (mq->current_envelope->mh->size),
486 mq);
484 487
485 mq->send_impl (mq, 488 mq->send_impl (mq,
486 mq->current_envelope->mh, 489 mq->current_envelope->mh,