#ifndef UXLOGGER_HPP #define UXLOGGER_HPP #include #include #include #include #include class UxLogger { private: std::string label; void LogLevel(const std::string level, const std::string& message); public: UxLogger(); void Debug(const std::string& message); void Info(const std::string& message); void Warning(const std::string& message); void Error(const std::string& message); }; extern UxLogger uxlogger; #endif