From 040039e3007ea9a24621ea1831b51a516003ad64 Mon Sep 17 00:00:00 2001
From: "Nicolas \"Pixel\" Noble" <pixel@nobis-crew.org>
Date: Thu, 19 Dec 2013 15:35:13 -0800
Subject: Adding the ability to mute the core engine even in debug builds.

---
 includes/Printer.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'includes')

diff --git a/includes/Printer.h b/includes/Printer.h
index d0eeab7..2717a84 100644
--- a/includes/Printer.h
+++ b/includes/Printer.h
@@ -65,7 +65,7 @@ class Printer {
     static void print(const char * fmt, ...) printfwarning(1, 2) { va_list ap; va_start(ap, fmt); vprint(fmt, ap); va_end(ap); }
     static void vprint(const char * fmt, va_list ap) printfwarning(1, 0) { getPrinter()->_print(fmt, ap); }
 
-#ifdef DEBUG
+#ifdef FULLDEBUG
     static void elog(uint32_t engine, const char * fmt, ...) printfwarning(2, 3) { va_list ap; va_start(ap, fmt); getPrinter()->_log(M_ENGINE_DEBUG, fmt, ap); }
 #else
     static void elog(uint32_t engine, const char * fmt, ...) { }
-- 
cgit v1.2.3