mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-04 18:51:09 -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);
|
|
}
|