From ac78538f43e5bf63af2d5327d93834e48bb10795 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Sun, 22 Jan 2017 22:49:30 +0100 Subject: [PATCH] fix stray log calls that lagged the core-api prefix --- src/core/core_api.c | 14 +++++++------- 1 file 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, { 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"); } -- 2.25.1