summaryrefslogtreecommitdiffstats
path: root/src/account-server
diff options
context:
space:
mode:
authorErik Schilling <ablu.erikschilling@googlemail.com>2013-02-24 21:04:46 +0100
committerErik Schilling <ablu.erikschilling@googlemail.com>2013-02-24 21:07:48 +0100
commit802eb61090abaf245617bc136ea21303af1c71b9 (patch)
treef79641e4188c53270a383e249931e37e22e3d328 /src/account-server
parentdd20c7f6148cc8b8b627028e25e817cc1cab063b (diff)
downloadmanaserv-802eb61090abaf245617bc136ea21303af1c71b9.tar.gz
manaserv-802eb61090abaf245617bc136ea21303af1c71b9.tar.xz
manaserv-802eb61090abaf245617bc136ea21303af1c71b9.zip
Fixed default value of the servername
Since the name was used to log things and the default now is "" also added logging of the address and port too.
Diffstat (limited to 'src/account-server')
-rw-r--r--src/account-server/serverhandler.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/account-server/serverhandler.cpp b/src/account-server/serverhandler.cpp
index 3260f44..024266b 100644
--- a/src/account-server/serverhandler.cpp
+++ b/src/account-server/serverhandler.cpp
@@ -247,7 +247,8 @@ void ServerHandler::processMessage(NetComputer *comp, MessageIn &msg)
// Map variables
outMsg.writeInt16(id);
- LOG_DEBUG("Issued server '" << server->name << "' "
+ LOG_DEBUG("Issued server " << server->name << "("
+ << server->address << ":" << server->port << ") "
<< "to enable map " << id);
std::map<std::string, std::string> variables;
variables = storage->getAllWorldStateVars(id);