| 39 | |
| 40 | template <class... Args> |
| 41 | void logc(Args&&... args) { |
| 42 | auto buf = fmt::memory_buffer{}; |
| 43 | fmt::format_to(std::back_inserter(buf), "[CLIENT] "); |
| 44 | fmt::format_to(std::back_inserter(buf), std::forward<Args>(args)...); |
| 45 | fmt::print(outp, "{}\n", std::string_view(buf.data(), buf.size())); |
| 46 | } |
| 47 | |
| 48 | template <class... Args> |
| 49 | void logs(Args&&... args) { |
no test coverage detected