From bf3dc421b2b5ccfe2fcd3cd4ec1ef90f39599600 Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Tue, 12 Jan 2010 17:53:55 +0100 Subject: Remove support for debug masks due to inconsistent use --- src/debug.c | 27 --------------------------- 1 file changed, 27 deletions(-) (limited to 'src/debug.c') diff --git a/src/debug.c b/src/debug.c index b5f74ad..78f3a17 100644 --- a/src/debug.c +++ b/src/debug.c @@ -26,7 +26,6 @@ #include "libiphone/libiphone.h" int toto_debug = 0; -uint16_t dbg_mask = 0; /** * Sets the level of debugging. Currently the only acceptable values are 0 and @@ -39,17 +38,6 @@ void iphone_set_debug_level(int level) toto_debug = level; } - -/** - * Set debug ids to display. Values can be OR-ed - * - * @param level Set to 0 for no debugging or 1 for debugging. - */ -void iphone_set_debug_mask(uint16_t mask) -{ - dbg_mask = mask; -} - void log_debug_msg(const char *format, ...) { #ifndef STRIP_DEBUG_CODE @@ -66,21 +54,6 @@ void log_debug_msg(const char *format, ...) #endif } -void log_dbg_msg(uint16_t id, const char *format, ...) -{ -#ifndef STRIP_DEBUG_CODE - if (id & dbg_mask) { - va_list args; - /* run the real fprintf */ - va_start(args, format); - - vfprintf(stderr, format, args); - - va_end(args); - } -#endif -} - inline void log_debug_buffer(const char *data, const int length) { #ifndef STRIP_DEBUG_CODE -- cgit v1.1-32-gdbae