Makefile: break long line
[fio.git] / debug.c
diff --git a/debug.c b/debug.c
index 9722878a538b84bef408a2d0d7c1c259b8704941..5e9806335fc630e01da4f8a55c5ed042dd939488 100644 (file)
--- a/debug.c
+++ b/debug.c
@@ -3,6 +3,7 @@
 #include <unistd.h>
 #include "debug.h"
 
+#ifdef FIO_INC_DEBUG
 void __dprint(int type, const char *str, ...)
 {
        va_list args;
@@ -10,18 +11,16 @@ void __dprint(int type, const char *str, ...)
 
        assert(type < FD_DEBUG_MAX);
 
-       if ((((1 << type)) & fio_debug) == 0)
-               return;
-
        pid = getpid();
        if (fio_debug_jobp && *fio_debug_jobp != -1U
            && pid != *fio_debug_jobp)
                return;
 
-       log_info("%-8s ", debug_levels[(type)].name);
-       log_info("%-5u ", (int) pid);
+       log_local("%-8s ", debug_levels[type].name);
+       log_local("%-5u ", (int) pid);
 
        va_start(args, str);
        log_valist(str, args);
        va_end(args);
 }
+#endif