[ox/std] Add oxDebug and oxDebugf, which are oxTrace aliases for debug channel
This commit is contained in:
parent
2ebce7713d
commit
cb6066f81e
3
deps/ox/src/ox/std/trace.hpp
vendored
3
deps/ox/src/ox/std/trace.hpp
vendored
@ -141,3 +141,6 @@ void init();
|
||||
#define oxTrace(ch) ox::trace::TraceStream(__FILE__, __LINE__, ch)
|
||||
|
||||
#define oxTracef(ch, fmt, ...) ox::trace::TraceStream(__FILE__, __LINE__, ch, ox::detail::fmtSegments<ox::detail::argCount(fmt)+1>(fmt), ##__VA_ARGS__)
|
||||
|
||||
#define oxDebug() ox::trace::TraceStream(__FILE__, __LINE__, "debug")
|
||||
#define oxDebugf(fmt, ...) ox::trace::TraceStream(__FILE__, __LINE__, "debug", ox::detail::fmtSegments<ox::detail::argCount(fmt)+1>(fmt), ##__VA_ARGS__)
|
||||
|
Loading…
Reference in New Issue
Block a user