#pragma once #include template void hy3_log(LogLevel level, std::format_string fmt, Args&&... args) { auto msg = std::vformat(fmt.get(), std::make_format_args(args...)); Debug::log(level, "[hy3] {}", msg); }