17 template <
typename... Args>
18 static void critical(fmt::format_string<Args...> fmt_str, Args&&... args)
21 fg(fmt::color::red) | fmt::emphasis::bold,
23 std::forward<Args>(args)...);
27 template <
typename... Args>
28 static void error(fmt::format_string<Args...> fmt_str, Args&&... args)
31 fg(fmt::color::red) | fmt::emphasis::bold,
33 std::forward<Args>(args)...);
37 template <
typename... Args>
38 static void warn(fmt::format_string<Args...> fmt_str, Args&&... args)
41 fg(fmt::color::orange),
43 std::forward<Args>(args)...);
47 template <
typename... Args>
48 static void info(fmt::format_string<Args...> fmt_str, Args&&... args)
51 fg(fmt::color::white),
53 std::forward<Args>(args)...);
57 template <
typename... Args>
58 static void debug(fmt::format_string<Args...> fmt_str, Args&&... args)
61 fg(fmt::color::green),
63 std::forward<Args>(args)...);
67 template <
typename... Args>
68 static void trace(fmt::format_string<Args...> fmt_str, Args&&... args)
71 fg(fmt::color::white),
73 std::forward<Args>(args)...);
Definition Logger.cppm:14
static void info(fmt::format_string< Args... > fmt_str, Args &&... args)
Definition Logger.cppm:48
static void trace(fmt::format_string< Args... > fmt_str, Args &&... args)
Definition Logger.cppm:68
static void debug(fmt::format_string< Args... > fmt_str, Args &&... args)
Definition Logger.cppm:58
static void error(fmt::format_string< Args... > fmt_str, Args &&... args)
Definition Logger.cppm:28
static void critical(fmt::format_string< Args... > fmt_str, Args &&... args)
Definition Logger.cppm:18
static void warn(fmt::format_string< Args... > fmt_str, Args &&... args)
Definition Logger.cppm:38
Definition EditorManager.cpp:29