aboutsummaryrefslogtreecommitdiff
path: root/src/server/authserver/Server/AuthSession.cpp
diff options
context:
space:
mode:
authorVincent-Michael <Vincent_Michael@gmx.de>2014-07-25 21:53:35 +0200
committerVincent-Michael <Vincent_Michael@gmx.de>2014-07-25 21:53:35 +0200
commit7f7987707be41766f74d40aa396a86fb840fcf28 (patch)
treead0c1377d4a8e63d7013a4e21fb63df2ee6b1c99 /src/server/authserver/Server/AuthSession.cpp
parent5a8e79528f06d8dabe1d038d8e079be29adf7e1e (diff)
parente516265703cb7acc4cc05b12a3455017a9fc527b (diff)
Merge branch 'master' of github.com:TrinityCore/TrinityCore into 4.3.4
Diffstat (limited to 'src/server/authserver/Server/AuthSession.cpp')
-rw-r--r--src/server/authserver/Server/AuthSession.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/server/authserver/Server/AuthSession.cpp b/src/server/authserver/Server/AuthSession.cpp
index 7d2948470f7..446b0a43158 100644
--- a/src/server/authserver/Server/AuthSession.cpp
+++ b/src/server/authserver/Server/AuthSession.cpp
@@ -895,5 +895,6 @@ void AuthSession::CloseSocket()
boost::system::error_code socketError;
_socket.close(socketError);
if (socketError)
- TC_LOG_DEBUG("server.authserver", "Account '%s' errored when closing socket: %i (%s)", _login.c_str(), socketError.value(), socketError.message());
+ TC_LOG_DEBUG("server.authserver", "Account '%s' errored when closing socket: %i (%s)",
+ _login.c_str(), socketError.value(), socketError.message().c_str());
}