aboutsummaryrefslogtreecommitdiff
path: root/src/server/authserver/Server/AuthSession.cpp
diff options
context:
space:
mode:
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());
}