aboutsummaryrefslogtreecommitdiff
path: root/src/core/core_api.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-01-22 22:49:30 +0100
committerChristian Grothoff <christian@grothoff.org>2017-01-22 22:49:30 +0100
commitac78538f43e5bf63af2d5327d93834e48bb10795 (patch)
tree39965fe4e35d93f687ab5de31325af82a20bf5a1 /src/core/core_api.c
parent37b981ae53b24155cc237eb1650c3457768d7c54 (diff)
downloadgnunet-ac78538f43e5bf63af2d5327d93834e48bb10795.tar.gz
gnunet-ac78538f43e5bf63af2d5327d93834e48bb10795.zip
fix stray log calls that lagged the core-api prefix
Diffstat (limited to 'src/core/core_api.c')
-rw-r--r--src/core/core_api.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/core/core_api.c b/src/core/core_api.c
index ace80b952..b6d8f61d2 100644
--- a/src/core/core_api.c
+++ b/src/core/core_api.c
@@ -249,9 +249,9 @@ handle_mq_error (void *cls,
249{ 249{
250 struct GNUNET_CORE_Handle *h = cls; 250 struct GNUNET_CORE_Handle *h = cls;
251 251
252 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 252 LOG (GNUNET_ERROR_TYPE_DEBUG,
253 "MQ ERROR: %d\n", 253 "MQ ERROR: %d\n",
254 error); 254 error);
255 reconnect_later (h); 255 reconnect_later (h);
256} 256}
257 257
@@ -348,10 +348,10 @@ core_mq_send_impl (struct GNUNET_MQ_Handle *mq,
348 sm->peer = pr->peer; 348 sm->peer = pr->peer;
349 sm->cork = htonl ((uint32_t) cork); 349 sm->cork = htonl ((uint32_t) cork);
350 sm->reserved = htonl (0); 350 sm->reserved = htonl (0);
351 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 351 LOG (GNUNET_ERROR_TYPE_DEBUG,
352 "Calling get_message with buffer of %u bytes (%s)\n", 352 "Calling get_message with buffer of %u bytes (%s)\n",
353 (unsigned int) msize, 353 (unsigned int) msize,
354 cork ? "corked" : "uncorked"); 354 cork ? "corked" : "uncorked");
355} 355}
356 356
357 357