summaryrefslogtreecommitdiff
path: root/src/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/log.h')
-rw-r--r--src/log.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/log.h b/src/log.h
index 1d087429c..afbce57e9 100644
--- a/src/log.h
+++ b/src/log.h
@@ -41,6 +41,8 @@ class ILogOutput
public:
/* line: Full line with timestamp, level and thread */
virtual void printLog(const std::string &line){};
+ /* line: Full line with timestamp, level and thread */
+ virtual void printLog(const std::string &line, enum LogMessageLevel lev){};
/* line: Only actual printed text */
virtual void printLog(enum LogMessageLevel lev, const std::string &line){};
};