mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-12-31 00:10:26 -06:00
8 lines
178 B
C++
8 lines
178 B
C++
#include <os/logger.h>
|
|
#include <os/logger_detail.h>
|
|
|
|
void os::logger::Log(const std::string& str, detail::ELogType type, const char* func)
|
|
{
|
|
detail::Log(str, type, func);
|
|
}
|