aboutsummaryrefslogtreecommitdiff
path: root/src/util/common_logging.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-02 22:13:32 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-02 22:13:32 +0000
commit17ee77576112312de11efa52eda7fa960fb908e2 (patch)
tree874dd3145237070832b4def342fd62d92c840c27 /src/util/common_logging.c
parent3d8c72a1dc1981d866d752a3d3567830fecd0eae (diff)
downloadgnunet-17ee77576112312de11efa52eda7fa960fb908e2.tar.gz
gnunet-17ee77576112312de11efa52eda7fa960fb908e2.zip
-doxygen, indentation
Diffstat (limited to 'src/util/common_logging.c')
-rw-r--r--src/util/common_logging.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/util/common_logging.c b/src/util/common_logging.c
index b3cb06387..80819276e 100644
--- a/src/util/common_logging.c
+++ b/src/util/common_logging.c
@@ -829,10 +829,11 @@ flush_bulk (const char *datestr)
829 * Ignore the next n calls to the log function. 829 * Ignore the next n calls to the log function.
830 * 830 *
831 * @param n number of log calls to ignore (could be negative) 831 * @param n number of log calls to ignore (could be negative)
832 * @param check_reset GNUNET_YES to assert that the log skip counter is currently zero 832 * @param check_reset #GNUNET_YES to assert that the log skip counter is currently zero
833 */ 833 */
834void 834void
835GNUNET_log_skip (int n, int check_reset) 835GNUNET_log_skip (int n,
836 int check_reset)
836{ 837{
837 int ok; 838 int ok;
838 839
@@ -849,6 +850,7 @@ GNUNET_log_skip (int n, int check_reset)
849 } 850 }
850} 851}
851 852
853
852/** 854/**
853 * Get the number of log calls that are going to be skipped 855 * Get the number of log calls that are going to be skipped
854 * 856 *
@@ -860,6 +862,7 @@ GNUNET_get_log_skip ()
860 return skip_log; 862 return skip_log;
861} 863}
862 864
865
863/** 866/**
864 * Output a log message using the default mechanism. 867 * Output a log message using the default mechanism.
865 * 868 *
@@ -869,7 +872,9 @@ GNUNET_get_log_skip ()
869 * @param va arguments to the format string "message" 872 * @param va arguments to the format string "message"
870 */ 873 */
871static void 874static void
872mylog (enum GNUNET_ErrorType kind, const char *comp, const char *message, 875mylog (enum GNUNET_ErrorType kind,
876 const char *comp,
877 const char *message,
873 va_list va) 878 va_list va)
874{ 879{
875 char date[DATE_STR_SIZE]; 880 char date[DATE_STR_SIZE];
@@ -979,7 +984,8 @@ mylog (enum GNUNET_ErrorType kind, const char *comp, const char *message,
979 * @param ... arguments for format string 984 * @param ... arguments for format string
980 */ 985 */
981void 986void
982GNUNET_log_nocheck (enum GNUNET_ErrorType kind, const char *message, ...) 987GNUNET_log_nocheck (enum GNUNET_ErrorType kind,
988 const char *message, ...)
983{ 989{
984 va_list va; 990 va_list va;
985 991