From: Christian Grothoff Date: Sun, 22 Jan 2017 21:49:30 +0000 (+0100) Subject: fix stray log calls that lagged the core-api prefix X-Git-Tag: taler-0.2.1~353 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ac78538f43e5bf63af2d5327d93834e48bb10795;p=oweals%2Fgnunet.git fix stray log calls that lagged the core-api prefix --- 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, { struct GNUNET_CORE_Handle *h = cls; - GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, - "MQ ERROR: %d\n", - error); + LOG (GNUNET_ERROR_TYPE_DEBUG, + "MQ ERROR: %d\n", + error); reconnect_later (h); } @@ -348,10 +348,10 @@ core_mq_send_impl (struct GNUNET_MQ_Handle *mq, sm->peer = pr->peer; sm->cork = htonl ((uint32_t) cork); sm->reserved = htonl (0); - GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, - "Calling get_message with buffer of %u bytes (%s)\n", - (unsigned int) msize, - cork ? "corked" : "uncorked"); + LOG (GNUNET_ERROR_TYPE_DEBUG, + "Calling get_message with buffer of %u bytes (%s)\n", + (unsigned int) msize, + cork ? "corked" : "uncorked"); }