logging subsystem: needless functions removed.

This commit is contained in:
Roland Jax
2014-11-19 14:09:06 +01:00
parent 8992ee4f85
commit a5896e53ca
2 changed files with 1 additions and 17 deletions
+1 -1
View File
@@ -189,7 +189,7 @@ void Logger::log(const int area, const int level, const std::string& data, ...)
if (vasprintf(&tmp, data.c_str(), ap) != -1) {
std::string buffer(tmp);
m_logQueue.add(new LogMessage(LogMessage(area, level, buffer)));
m_logQueue.add(new LogMessage(area, level, buffer));
}
va_end(ap);