#include <luna/DebugLog.h>
void dbgln(const char* format, ...)
{
va_list ap;
va_start(ap, format);
debug_log_impl(format, ap);
va_end(ap);
}