This commit is contained in:
Timur A. Fatkhullin
2024-11-12 01:00:22 +03:00
parent 6acc1f94ba
commit 9769c24005
6 changed files with 48 additions and 15 deletions

View File

@@ -36,7 +36,7 @@ class AdcTrivialLogger
public:
virtual ~AdcTrivialLogger() = default;
protected:
// protected:
static constexpr std::string_view errorLevelMark{"error"};
static constexpr std::string_view warnLevelMark{"warning"};
static constexpr std::string_view infoLevelMark{"info"};
@@ -109,6 +109,8 @@ protected:
};
static_assert(interfaces::adc_logger_c<AdcTrivialLogger>, "!!!!!!!!!!!");
// A generic implementation of POSIX OS daemon
class AdcPosixGenericDaemon
{