2023-08-26 10:43:44 +00:00
|
|
|
/**
|
|
|
|
* @file DebugLog.cpp
|
|
|
|
* @author apio (cloudapio.eu)
|
|
|
|
* @brief Debug logging for platform-agnostic functions.
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2022-2023, the Luna authors.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-12-22 17:00:35 +00:00
|
|
|
#include <luna/DebugLog.h>
|
|
|
|
|
|
|
|
void dbgln(const char* format, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, format);
|
|
|
|
debug_log_impl(format, ap);
|
|
|
|
va_end(ap);
|
2023-01-02 12:07:29 +00:00
|
|
|
}
|