| 68 | } |
| 69 | |
| 70 | constexpr void log(LogLevel level, const auto&... args) |
| 71 | { |
| 72 | // #A Make the format string |
| 73 | constexpr auto braces = makeBraces<sizeof...(args)>(); |
| 74 | |
| 75 | vlog(level, |
| 76 | std::string_view{braces.data()}, |
| 77 | std::make_format_args(args...)); |
| 78 | } |
| 79 | |
| 80 | int main() |
| 81 | { |