// SPDX-FileCopyrightText: 2024 Yury Gubich // SPDX-License-Identifier: GPL-3.0-or-later #pragma once #include #include #include "logger.h" namespace Shared { class Loggable { public: Loggable(const Logger& logger, const std::vector& domain = {"Unknown"}); private: const Logger& logger; std::vector domain; protected: void trace(const std::string& message) const; void debug(const std::string& message) const; void info(const std::string& message) const; void warn(const std::string& message) const; void error(const std::string& message) const; }; }