| 55 | } |
| 56 | |
| 57 | void vlog(std::string_view fmt, std::format_args&& args) |
| 58 | { |
| 59 | const auto t = GetTime(); |
| 60 | std::clog << std::format("[{:%Y-%m-%d-%H:%M:%S}] "sv, t) |
| 61 | << std::vformat(fmt, args); |
| 62 | } |
| 63 | |
| 64 | constexpr void log(LogLevel level, const auto&... args) |
| 65 | { |