| 130 | |
| 131 | template<typename... Args> |
| 132 | void critical(string_view_t fmt, const Args &... args) |
| 133 | { |
| 134 | log(level::critical, fmt, args...); |
| 135 | } |
| 136 | |
| 137 | template<typename T> |
| 138 | void log(level::level_enum lvl, const T &msg) |
no test coverage detected