Files
UnleashedRecomp-hedge-dev/UnleashedRecomp/os/linux/logger_linux.cpp
2025-01-19 21:09:47 +03:00

18 lines
263 B
C++

#include <os/logger.h>
void os::logger::Init()
{
}
void os::logger::Log(const std::string_view str, ELogType type, const char* func)
{
if (func)
{
fmt::println("[{}] {}", func, str);
}
else
{
fmt::println("{}", str);
}
}