An event loop

This commit is contained in:
Blue 2025-04-12 13:12:38 +03:00
parent ce29081a5f
commit 69e8098cce
Signed by: blue
GPG key ID: 9B203B252A63EE38
10 changed files with 295 additions and 11 deletions

View file

@ -27,3 +27,7 @@ void Shared::Loggable::warn(const std::string& message) const {
void Shared::Loggable::error(const std::string& message) const {
logger.log(Logger::error, message, domain);
}
void Shared::Loggable::fatal(const std::string& message) const {
logger.log(Logger::fatal, message, domain);
}