From ce461321ef514cc0b21e44e415eb05ad2122036b Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Fri, 29 Apr 2016 12:45:58 +0200 Subject: Turn a bunch of outcommented fprintf's into dprintf's. Also, rename dprintf 'level' to 'category' and add DEBUG_REBUILD. --- c_src/util.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'c_src/util.h') diff --git a/c_src/util.h b/c_src/util.h index f08f2c3..9c2b9d6 100644 --- a/c_src/util.h +++ b/c_src/util.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, NORDUnet A/S. + * Copyright (c) 2016, NORDUnet A/S. * See LICENSE for licensing information. */ @@ -9,10 +9,11 @@ #define DEBUG_CACHE 0 #define DEBUG_WRITE 0 #define DEBUG_READ 0 +#define DEBUG_REBUILD 0 #define DEBUG_PORT 0 -#define dprintf(level,args) do { if (DEBUG_ ## level) { fprintf args; } } while (0) -#define dprinthex(level,data,size) do { if (DEBUG_ ## level) { print_hex(data, size); } } while (0) +#define dprintf(category,args) do { if (DEBUG_ ## category) { fprintf args; } } while (0) +#define dprinthex(category,data,size) do { if (DEBUG_ ## category) { print_hex(data, size); } } while (0) void set_error(char **error, const char * __restrict, ...) __attribute__ ((__format__ (__printf__, 2, 3))); -- cgit v1.1