diff options
Diffstat (limited to 'src/ILog.hpp')
-rw-r--r-- | src/ILog.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ILog.hpp b/src/ILog.hpp index a71fda2..e1ee8b4 100644 --- a/src/ILog.hpp +++ b/src/ILog.hpp @@ -33,9 +33,9 @@ public: virtual ~ILog() = default; - virtual void info_msg(const std::string& msg) = 0; - virtual void warning_msg(const std::string& msg) = 0; - virtual void error_msg(const std::string& msg) = 0; + virtual void info(const std::string& msg) = 0; + virtual void warning(const std::string& msg) = 0; + virtual void error(const std::string& msg) = 0; }; #endif // PATCHAGE_ILOG_HPP |