10 lines
158 B
C++
10 lines
158 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);
|
|
}
|