mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
Update logger.hpp
This commit is contained in:
parent
db8138b54d
commit
e831d9f0e5
1 changed files with 1 additions and 3 deletions
|
@ -17,7 +17,6 @@ namespace Log {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#define false 0
|
|
||||||
// Our loggers here. Enable/disable by toggling the template param
|
// Our loggers here. Enable/disable by toggling the template param
|
||||||
static Logger<false> kernelLogger;
|
static Logger<false> kernelLogger;
|
||||||
static Logger<true> debugStringLogger; // Enables output for the outputDebugString SVC
|
static Logger<true> debugStringLogger; // Enables output for the outputDebugString SVC
|
||||||
|
@ -52,11 +51,10 @@ namespace Log {
|
||||||
static Logger<false> ptmLogger;
|
static Logger<false> ptmLogger;
|
||||||
static Logger<false> y2rLogger;
|
static Logger<false> y2rLogger;
|
||||||
static Logger<false> srvLogger;
|
static Logger<false> srvLogger;
|
||||||
#undef false
|
|
||||||
|
|
||||||
#define MAKE_LOG_FUNCTION(functionName, logger) \
|
#define MAKE_LOG_FUNCTION(functionName, logger) \
|
||||||
template <typename... Args> \
|
template <typename... Args> \
|
||||||
void functionName(const char* fmt, Args... args) { \
|
void functionName(const char* fmt, Args... args) { \
|
||||||
Log::logger.log(fmt, args...); \
|
Log::logger.log(fmt, args...); \
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue