gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r8756 - gnunet/src/statistics


From: gnunet
Subject: [GNUnet-SVN] r8756 - gnunet/src/statistics
Date: Sun, 19 Jul 2009 06:49:51 -0600

Author: grothoff
Date: 2009-07-19 06:49:51 -0600 (Sun, 19 Jul 2009)
New Revision: 8756

Modified:
   gnunet/src/statistics/statistics_api.c
Log:
quiter

Modified: gnunet/src/statistics/statistics_api.c
===================================================================
--- gnunet/src/statistics/statistics_api.c      2009-07-19 12:49:44 UTC (rev 
8755)
+++ gnunet/src/statistics/statistics_api.c      2009-07-19 12:49:51 UTC (rev 
8756)
@@ -178,8 +178,10 @@
   ret->client = GNUNET_CLIENT_connect (ret->sched, "statistics", ret->cfg);
   if (ret->client != NULL)
     return GNUNET_YES;
-  GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
+#if DEBUG_STATISTICS
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
               _("Failed to connect to statistics service!\n"));
+#endif
   return GNUNET_NO;
 }
 
@@ -347,9 +349,10 @@
     {
       GNUNET_CLIENT_disconnect (h->client);
       h->client = NULL;
-      GNUNET_log (GNUNET_ERROR_TYPE_WARNING | GNUNET_ERROR_TYPE_BULK,
-                  _
-                  ("Error receiving statistics from service, is the service 
running?\n"));
+#if DEBUG_STATISTICS
+      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
+                 "Error receiving statistics from service, is the service 
running?\n" );
+#endif
       finish (h, GNUNET_SYSERR);
       return;
     }
@@ -400,8 +403,10 @@
   if (buf == NULL)
     {
       /* timeout / error */
-      GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
-                  _("Transmission of request for statistics failed!\n"));
+#if DEBUG_STATISTICS
+      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                  "Transmission of request for statistics failed!\n");
+#endif
       finish (handle, GNUNET_SYSERR);
       return 0;
     }
@@ -535,8 +540,10 @@
                                            h->current->msize,
                                            timeout, &transmit_action, h))
     {
-      GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
+#if DEBUG_STATISTICS
+      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                   "Failed to transmit request to statistics service.\n");
+#endif
       finish (h, GNUNET_SYSERR);
     }
 }
@@ -587,10 +594,12 @@
   GNUNET_assert (proc != NULL);
   if (GNUNET_YES != try_connect (handle))
     {
-      GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
+#if DEBUG_STATISTICS
+      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                   "Failed to connect to statistics service, can not get value 
`%s:%s'.\n",
                   strlen (subsystem) ? subsystem : "*",
                   strlen (name) ? name : "*");
+#endif
       if (cont != NULL)
        cont (cls, GNUNET_SYSERR);
       return;





reply via email to

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