diff options
author | David Robillard <d@drobilla.net> | 2020-11-27 18:56:29 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-27 21:52:17 +0100 |
commit | 320f988a5ee586235f785b15028c7ef777e981a0 (patch) | |
tree | e518cc231f1872091c3a808b93a1385957ec1214 /src/ILog.hpp | |
parent | dbe6899651ac929f59af160dd07aaf6bda079b23 (diff) | |
download | patchage-320f988a5ee586235f785b15028c7ef777e981a0.tar.gz patchage-320f988a5ee586235f785b15028c7ef777e981a0.tar.bz2 patchage-320f988a5ee586235f785b15028c7ef777e981a0.zip |
Use prettier names for log methods
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 |