13 template <
typename... Args>
static void trace(fmt::format_string<Args...> fmt, Args &&...args) {
14 spdlog::trace(fmt, std::forward<Args>(args)...);
18 template <
typename... Args>
static void debug(fmt::format_string<Args...> fmt, Args &&...args) {
19 spdlog::debug(fmt, std::forward<Args>(args)...);
23 template <
typename... Args>
static void info(fmt::format_string<Args...> fmt, Args &&...args) {
24 spdlog::info(fmt, std::forward<Args>(args)...);
28 template <
typename... Args>
static void warn(fmt::format_string<Args...> fmt, Args &&...args) {
29 spdlog::warn(fmt, std::forward<Args>(args)...);
33 template <
typename... Args>
static void error(fmt::format_string<Args...> fmt, Args &&...args) {
34 spdlog::error(fmt, std::forward<Args>(args)...);
38 template <
typename... Args>
39 static void critical(fmt::format_string<Args...> fmt, Args &&...args) {
40 spdlog::critical(fmt, std::forward<Args>(args)...);