diff options
Diffstat (limited to 'networking/udhcp/debug.h')
-rw-r--r-- | networking/udhcp/debug.h | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/networking/udhcp/debug.h b/networking/udhcp/debug.h deleted file mode 100644 index a1e1974..0000000 --- a/networking/udhcp/debug.h +++ /dev/null @@ -1,41 +0,0 @@ -#ifndef _DEBUG_H -#define _DEBUG_H - -#include "libbb_udhcp.h" - -#include <stdio.h> -#ifdef SYSLOG -#include <syslog.h> -#endif - - -#ifdef SYSLOG -# define LOG(level, str, args...) do { printf(str, ## args); \ - printf("\n"); \ - syslog(level, str, ## args); } while(0) -# define OPEN_LOG(name) openlog(name, 0, 0) -#define CLOSE_LOG() closelog() -#else -# define LOG_EMERG "EMERGENCY!" -# define LOG_ALERT "ALERT!" -# define LOG_CRIT "critical!" -# define LOG_WARNING "warning" -# define LOG_ERR "error" -# define LOG_INFO "info" -# define LOG_DEBUG "debug" -# define LOG(level, str, args...) do { printf("%s, ", level); \ - printf(str, ## args); \ - printf("\n"); } while(0) -# define OPEN_LOG(name) do {;} while(0) -#define CLOSE_LOG() do {;} while(0) -#endif - -#ifdef DEBUG -# undef DEBUG -# define DEBUG(level, str, args...) LOG(level, str, ## args) -# define DEBUGGING -#else -# define DEBUG(level, str, args...) do {;} while(0) -#endif - -#endif |