gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r32342 - gnunet/src/mesh


From: gnunet
Subject: [GNUnet-SVN] r32342 - gnunet/src/mesh
Date: Thu, 13 Feb 2014 21:18:12 +0100

Author: bartpolot
Date: 2014-02-13 21:18:12 +0100 (Thu, 13 Feb 2014)
New Revision: 32342

Modified:
   gnunet/src/mesh/gnunet-service-mesh.c
   gnunet/src/mesh/gnunet-service-mesh_hello.c
   gnunet/src/mesh/gnunet-service-mesh_local.c
Log:
- cleanup log messages

Modified: gnunet/src/mesh/gnunet-service-mesh.c
===================================================================
--- gnunet/src/mesh/gnunet-service-mesh.c       2014-02-13 20:18:09 UTC (rev 
32341)
+++ gnunet/src/mesh/gnunet-service-mesh.c       2014-02-13 20:18:12 UTC (rev 
32342)
@@ -144,7 +144,7 @@
   GNUNET_CRYPTO_eddsa_key_get_public (my_private_key, &my_full_id.public_key);
   myid = GNUNET_PEER_intern (&my_full_id);
   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
-              "Mesh for peer [%s] starting\n",
+              "STARTING SERVICE (MESH) for peer [%s]\n",
               GNUNET_i2s (&my_full_id));
 
   GML_init (server);    /* Local clients */

Modified: gnunet/src/mesh/gnunet-service-mesh_hello.c
===================================================================
--- gnunet/src/mesh/gnunet-service-mesh_hello.c 2014-02-13 20:18:09 UTC (rev 
32341)
+++ gnunet/src/mesh/gnunet-service-mesh_hello.c 2014-02-13 20:18:12 UTC (rev 
32342)
@@ -105,9 +105,9 @@
     LOG (GNUNET_ERROR_TYPE_DEBUG, " hello with id %p and msg %p\n", id, hello);
     return;
   }
-  LOG (GNUNET_ERROR_TYPE_INFO, " hello for %s (%d bytes), expires on %s\n",
+  LOG (GNUNET_ERROR_TYPE_DEBUG, " hello for %s (%d bytes), expires on %s\n",
        GNUNET_i2s (id), NULL != hello ? GNUNET_HELLO_size (hello) : -1,
-       
GNUNET_STRINGS_absolute_time_to_string(GNUNET_HELLO_get_last_expiration(hello)));
+       GNUNET_STRINGS_absolute_time_to_string 
(GNUNET_HELLO_get_last_expiration(hello)));
   if (NULL == hello)
   {
     LOG (GNUNET_ERROR_TYPE_DEBUG, " hello is NULL\n");

Modified: gnunet/src/mesh/gnunet-service-mesh_local.c
===================================================================
--- gnunet/src/mesh/gnunet-service-mesh_local.c 2014-02-13 20:18:09 UTC (rev 
32341)
+++ gnunet/src/mesh/gnunet-service-mesh_local.c 2014-02-13 20:18:12 UTC (rev 
32342)
@@ -411,7 +411,7 @@
   struct MeshChannel *ch;
   MESH_ChannelNumber chid;
 
-  LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\nGot a DESTROY CHANNEL from client!\n");
+  LOG (GNUNET_ERROR_TYPE_DEBUG, "Got a DESTROY CHANNEL from client!\n");
 
   /* Sanity check for client registration */
   if (NULL == (c = GML_client_get (client)))
@@ -471,7 +471,7 @@
   size_t size;
   int fwd;
 
-  LOG (GNUNET_ERROR_TYPE_DEBUG, "\n\nGot data from a client!\n");
+  LOG (GNUNET_ERROR_TYPE_DEBUG, "Got data from a client!\n");
 
   /* Sanity check for client registration */
   if (NULL == (c = GML_client_get (client)))




reply via email to

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