#pragma once #include #include #include #include #include #include class Logger { public: static void init(bool toConsole = true, const std::string_view filePath = ""); static void info(const std::string_view msg); static void warn(const std::string_view msg); static void error(const std::string_view msg); static void debug(const std::string_view msg); static void fatal(const std::string_view msg); };