aboutsummaryrefslogtreecommitdiff
path: root/src/util/client.c
diff options
context:
space:
mode:
authorlurchi <lurchi@strangeplace.net>2017-11-24 21:59:24 +0100
committerlurchi <lurchi@strangeplace.net>2017-11-24 21:59:24 +0100
commit71e1a09e349d557e76cb9acdb4718d312edc8926 (patch)
tree14d4f12190fd987d96fe43f38a5ecd02d6b37ec4 /src/util/client.c
parent130d7e66aea9c9b6ec3955dc9446530057dcb10c (diff)
downloadgnunet-71e1a09e349d557e76cb9acdb4718d312edc8926.tar.gz
gnunet-71e1a09e349d557e76cb9acdb4718d312edc8926.zip
WARNING -> DEBUG
Diffstat (limited to 'src/util/client.c')
-rw-r--r--src/util/client.c8
1 files 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)
270 GNUNET_log (GNUNET_ERROR_TYPE_WARNING, 270 GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
271 "client: error during sending message of type %u\n", ntohs(cstate->msg->type)); 271 "client: error during sending message of type %u\n", ntohs(cstate->msg->type));
272 if (EINTR == errno){ 272 if (EINTR == errno){
273 GNUNET_log (GNUNET_ERROR_TYPE_WARNING, 273 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
274 "client: retrying message of type %u\n", ntohs(cstate->msg->type)); 274 "client: retrying message of type %u\n", ntohs(cstate->msg->type));
275 goto RETRY; 275 goto RETRY;
276 } 276 }
@@ -282,7 +282,7 @@ transmit_ready (void *cls)
282 cstate->msg_off += ret; 282 cstate->msg_off += ret;
283 if (cstate->msg_off < len) 283 if (cstate->msg_off < len)
284 { 284 {
285 GNUNET_log (GNUNET_ERROR_TYPE_WARNING, 285 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
286 "client: rescheduling message of type %u\n", ntohs(cstate->msg->type)); 286 "client: rescheduling message of type %u\n", ntohs(cstate->msg->type));
287 cstate->send_task 287 cstate->send_task
288 = GNUNET_SCHEDULER_add_write_net (GNUNET_TIME_UNIT_FOREVER_REL, 288 = GNUNET_SCHEDULER_add_write_net (GNUNET_TIME_UNIT_FOREVER_REL,
@@ -293,7 +293,7 @@ transmit_ready (void *cls)
293 GNUNET_MQ_impl_send_in_flight (cstate->mq); 293 GNUNET_MQ_impl_send_in_flight (cstate->mq);
294 return; 294 return;
295 } 295 }
296 GNUNET_log (GNUNET_ERROR_TYPE_WARNING, 296 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
297 "client: sending message of type %u successful\n", ntohs(cstate->msg->type)); 297 "client: sending message of type %u successful\n", ntohs(cstate->msg->type));
298 cstate->msg = NULL; 298 cstate->msg = NULL;
299 GNUNET_MQ_impl_send_continue (cstate->mq); 299 GNUNET_MQ_impl_send_continue (cstate->mq);
@@ -806,7 +806,7 @@ connection_client_send_impl (struct GNUNET_MQ_Handle *mq,
806 cstate->msg = msg; 806 cstate->msg = msg;
807 cstate->msg_off = 0; 807 cstate->msg_off = 0;
808 if (NULL == cstate->sock){ 808 if (NULL == cstate->sock){
809 GNUNET_log (GNUNET_ERROR_TYPE_WARNING, 809 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
810 "client: waiting for socket\n"); 810 "client: waiting for socket\n");
811 return; /* still waiting for connection */ 811 return; /* still waiting for connection */
812 } 812 }