36void print(std::ostream& os, format_string<Args...> fmt_str,
Args&&... args)
38#if defined(SPDLOG_USE_STD_FORMAT)
40 os << std::format(fmt_str, std::forward<Args>(args)...);
41#elif FMT_VERSION >= 90000
43 fmt::print(os, fmt_str, std::forward<Args>(args)...);
47 os << fmt::format(fmt_str, std::forward<Args>(args)...);
void print(std::ostream &os, format_string< Args... > fmt_str, Args &&... args)
Writes a formatted string to an output stream.
Definition print.h:36