gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnunet] 39/64: WARNING -> DEBUG


From: gnunet
Subject: [GNUnet-SVN] [gnunet] 39/64: WARNING -> DEBUG
Date: Sat, 30 Dec 2017 20:58:24 +0100

This is an automated email from the git hooks/post-receive script.

lurchi pushed a commit to branch master
in repository gnunet.

commit 71e1a09e349d557e76cb9acdb4718d312edc8926
Author: lurchi <address@hidden>
AuthorDate: Fri Nov 24 21:59:24 2017 +0100

    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 */
    }

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]