aboutsummaryrefslogtreecommitdiff
path: root/ble/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'ble/log.h')
-rw-r--r--ble/log.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/ble/log.h b/ble/log.h
index 1d62121..479c81c 100644
--- a/ble/log.h
+++ b/ble/log.h
@@ -3,6 +3,8 @@
#include <boost/log/core.hpp>
#include <boost/log/trivial.hpp>
+
+#ifdef DEBUG
#define D BOOST_LOG_TRIVIAL(debug)
#define I BOOST_LOG_TRIVIAL(info)
#define W BOOST_LOG_TRIVIAL(warning)
@@ -10,5 +12,14 @@
#define DF BOOST_LOG_TRIVIAL(debug) << __FUNCTION__ << ": "
#define IF BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << ": "
#define WF BOOST_LOG_TRIVIAL(warning) << __FUNCTION__ << ": "
+#else
+#define D if (false) BOOST_LOG_TRIVIAL(debug)
+#define I if (false) BOOST_LOG_TRIVIAL(info)
+#define W if (false) BOOST_LOG_TRIVIAL(warning)
+
+#define DF if (false) BOOST_LOG_TRIVIAL(debug) << __FUNCTION__ << ": "
+#define IF if (false) BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << ": "
+#define WF if (false) BOOST_LOG_TRIVIAL(warning) << __FUNCTION__ << ": "
+#endif
#endif