#pragma once #include #include namespace Log { // Our logger class template class Logger { public: void log(const char* fmt, ...) { if constexpr (!enabled) return; std::va_list args; va_start(args, fmt); std::vprintf(fmt, args); va_end(args); } }; // Our loggers here. Enable/disable by toggling the template param static Logger kernelLogger; static Logger debugStringLogger; // Enables output for the outputDebugString SVC static Logger errorLogger; static Logger fileIOLogger; static Logger svcLogger; static Logger threadLogger; static Logger gpuLogger; static Logger rendererLogger; // Service loggers static Logger acLogger; static Logger actLogger; static Logger amLogger; static Logger aptLogger; static Logger bossLogger; static Logger camLogger; static Logger cecdLogger; static Logger cfgLogger; static Logger dspServiceLogger; static Logger dlpSrvrLogger; static Logger frdLogger; static Logger fsLogger; static Logger hidLogger; static Logger gspGPULogger; static Logger gspLCDLogger; static Logger ldrLogger; static Logger micLogger; static Logger nfcLogger; static Logger nimLogger; static Logger ndmLogger; static Logger ptmLogger; static Logger y2rLogger; static Logger srvLogger; #define MAKE_LOG_FUNCTION(functionName, logger) \ template \ void functionName(const char* fmt, Args... args) { \ Log::logger.log(fmt, args...); \ } }