aboutsummaryrefslogtreecommitdiff
path: root/src/util/mq.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-10-10 15:47:00 +0000
committerChristian Grothoff <christian@grothoff.org>2016-10-10 15:47:00 +0000
commit93085e8a2991fde229400b588a5930e9fcca0d75 (patch)
tree0384246adbd96fa0138a46ad5fecb777aa40e789 /src/util/mq.c
parent2bf962c76bb82c1f38acea42c7bdfb241e2582e7 (diff)
downloadgnunet-93085e8a2991fde229400b588a5930e9fcca0d75.tar.gz
gnunet-93085e8a2991fde229400b588a5930e9fcca0d75.zip
migrating testbed to new service API
Diffstat (limited to 'src/util/mq.c')
-rw-r--r--src/util/mq.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/util/mq.c b/src/util/mq.c
index 3d6f27567..7c13265d8 100644
--- a/src/util/mq.c
+++ b/src/util/mq.c
@@ -295,9 +295,10 @@ GNUNET_MQ_inject_message (struct GNUNET_MQ_Handle *mq,
295 } 295 }
296 done: 296 done:
297 if (GNUNET_NO == handled) 297 if (GNUNET_NO == handled)
298 LOG (GNUNET_ERROR_TYPE_DEBUG, 298 LOG (GNUNET_ERROR_TYPE_INFO,
299 "No handler for message of type %d\n", 299 "No handler for message of type %d and size %d\n",
300 ntohs (mh->type)); 300 ntohs (mh->type),
301 ntohs (mh->size));
301} 302}
302 303
303 304