9 lines
157 B
C++
9 lines
157 B
C++
|
#include <luna/DebugLog.h>
|
||
|
|
||
|
void dbgln(const char* format, ...)
|
||
|
{
|
||
|
va_list ap;
|
||
|
va_start(ap, format);
|
||
|
debug_log_impl(format, ap);
|
||
|
va_end(ap);
|
||
|
}
|