working commit

This commit is contained in:
2026-05-15 15:30:29 +02:00
parent 879481feab
commit 886684e224
28 changed files with 629 additions and 81 deletions
+6
View File
@@ -11,12 +11,18 @@
class UxLogger {
private:
std::string label;
void LogLevel(const std::string level, const std::string& message);
public:
UxLogger(std::string ilabel);
UxLogger();
void Log(const std::string& message);
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