diff options
Diffstat (limited to 'src/log.cpp')
-rw-r--r-- | src/log.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/log.cpp b/src/log.cpp index 188b9b679..579831096 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -100,6 +100,7 @@ void log_printline(enum LogMessageLevel lev, const std::string &text) i != log_outputs[lev].end(); i++){ ILogOutput *out = *i; out->printLog(os.str()); + out->printLog(os.str(), lev); out->printLog(lev, text); } } |