summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-08-13 13:27:56 +0200
committermadmaxoft <github@xoft.cz>2014-08-13 13:27:56 +0200
commit08c55ef98348b13f4375fe683337fbf3cc9a9122 (patch)
tree409e802721f9a9726ad22e676a1362b6866f6e7e
parentFixed windows compilation and style issues. (diff)
downloadcuberite-08c55ef98348b13f4375fe683337fbf3cc9a9122.tar
cuberite-08c55ef98348b13f4375fe683337fbf3cc9a9122.tar.gz
cuberite-08c55ef98348b13f4375fe683337fbf3cc9a9122.tar.bz2
cuberite-08c55ef98348b13f4375fe683337fbf3cc9a9122.tar.lz
cuberite-08c55ef98348b13f4375fe683337fbf3cc9a9122.tar.xz
cuberite-08c55ef98348b13f4375fe683337fbf3cc9a9122.tar.zst
cuberite-08c55ef98348b13f4375fe683337fbf3cc9a9122.zip
-rw-r--r--src/Logger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Logger.cpp b/src/Logger.cpp
index 572a0e160..cb528e8ab 100644
--- a/src/Logger.cpp
+++ b/src/Logger.cpp
@@ -54,7 +54,7 @@ void cLogger::LogSimple(AString a_Message, eLogLevel a_LogLevel)
cCSLock Lock(m_CriticalSection);
for (size_t i = 0; i < m_LogListeners.size(); i++)
{
- m_LogListeners[i]->Log(a_Message, a_LogLevel);
+ m_LogListeners[i]->Log(Line, a_LogLevel);
}
}