diff options
author | madmaxoft <github@xoft.cz> | 2014-08-13 13:27:56 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-08-13 13:27:56 +0200 |
commit | 08c55ef98348b13f4375fe683337fbf3cc9a9122 (patch) | |
tree | 409e802721f9a9726ad22e676a1362b6866f6e7e /src | |
parent | Fixed windows compilation and style issues. (diff) | |
download | cuberite-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 |
Diffstat (limited to '')
-rw-r--r-- | src/Logger.cpp | 2 |
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); } } |