From 71e1a09e349d557e76cb9acdb4718d312edc8926 Mon Sep 17 00:00:00 2001 From: lurchi Date: Fri, 24 Nov 2017 21:59:24 +0100 Subject: [PATCH] WARNING -> DEBUG --- src/util/client.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/util/client.c b/src/util/client.c index 138b1cfdd..8012c1523 100644 --- a/src/util/client.c +++ b/src/util/client.c @@ -270,7 +270,7 @@ transmit_ready (void *cls) GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "client: error during sending message of type %u\n", ntohs(cstate->msg->type)); if (EINTR == errno){ - GNUNET_log (GNUNET_ERROR_TYPE_WARNING, + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "client: retrying message of type %u\n", ntohs(cstate->msg->type)); goto RETRY; } @@ -282,7 +282,7 @@ transmit_ready (void *cls) cstate->msg_off += ret; if (cstate->msg_off < len) { - GNUNET_log (GNUNET_ERROR_TYPE_WARNING, + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "client: rescheduling message of type %u\n", ntohs(cstate->msg->type)); cstate->send_task = GNUNET_SCHEDULER_add_write_net (GNUNET_TIME_UNIT_FOREVER_REL, @@ -293,7 +293,7 @@ transmit_ready (void *cls) GNUNET_MQ_impl_send_in_flight (cstate->mq); return; } - GNUNET_log (GNUNET_ERROR_TYPE_WARNING, + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "client: sending message of type %u successful\n", ntohs(cstate->msg->type)); cstate->msg = NULL; GNUNET_MQ_impl_send_continue (cstate->mq); @@ -806,7 +806,7 @@ connection_client_send_impl (struct GNUNET_MQ_Handle *mq, cstate->msg = msg; cstate->msg_off = 0; if (NULL == cstate->sock){ - GNUNET_log (GNUNET_ERROR_TYPE_WARNING, + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "client: waiting for socket\n"); return; /* still waiting for connection */ } -- 2.25.1