summaryrefslogtreecommitdiff
path: root/src/logger/types/ilogger.hpp
diff options
context:
space:
mode:
authorclaiff <claiff@mail.ru>2022-10-06 12:26:45 +0300
committerclaiff <claiff@mail.ru>2022-10-06 12:26:45 +0300
commitda5f91a0ce15351a82beb061c3ccc965164529bc (patch)
tree1f4cd2d1e2f8cf2442d055c519d06c6e0692febc /src/logger/types/ilogger.hpp
parent8edef99a5b52643e0b919c424357752cbbc9a8dd (diff)
downloadobmc-sila-smtp-da5f91a0ce15351a82beb061c3ccc965164529bc.tar.xz
create settings on startbugfix/proxy_file_reader
Diffstat (limited to 'src/logger/types/ilogger.hpp')
-rw-r--r--src/logger/types/ilogger.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/logger/types/ilogger.hpp b/src/logger/types/ilogger.hpp
index 5dce1d5..7f2a5e5 100644
--- a/src/logger/types/ilogger.hpp
+++ b/src/logger/types/ilogger.hpp
@@ -10,7 +10,8 @@ namespace smtp::logger::types
virtual ~ILogger() = default;
virtual void LogError( std::string const& method, std::string const& message ) const = 0;
+ virtual void LogOk( std::string const& message ) const = 0;
};
using ILoggerPtr = std::shared_ptr < ILogger >;
-} \ No newline at end of file
+}