mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-12-31 08:21:11 -06:00
13 lines
231 B
C++
13 lines
231 B
C++
#include <os/logger.h>
|
|
#include <os/logger_detail.h>
|
|
|
|
void os::logger::Init()
|
|
{
|
|
detail::Init();
|
|
}
|
|
|
|
void os::logger::Log(const std::string_view str, detail::ELogType type, const char* func)
|
|
{
|
|
detail::Log(str, type, func);
|
|
}
|