feat(build): Add flag for drawing visible whitespace

This commit is contained in:
Michael Carlberg 2017-01-13 11:04:43 +01:00
parent a26a15d485
commit 6fb48c8e6f
6 changed files with 20 additions and 5 deletions
include/components

View file

@ -40,7 +40,7 @@ class logger {
void trace(string message, Args... args) const {
output(loglevel::TRACE, message, args...);
}
#ifdef VERBOSE_TRACELOG
#ifdef DEBUG_LOGGER_TRACE
template <typename... Args>
void trace_x(string message, Args... args) const {
output(loglevel::TRACE, message, args...);