Made head line connection info shorter, to have enough space if sreen size is small with new mem info.

This commit is contained in:
LevelX2 2014-05-03 02:49:23 +02:00
parent 7318ecb50e
commit 866c65c496

View file

@ -206,7 +206,7 @@ public class SessionImpl implements Session {
serverState = server.getServerState();
updateDatabase();
logger.info(new StringBuilder("Connected as ").append(this.getUserName()).append(" to MAGE server at ").append(connection.getHost()).append(":").append(connection.getPort()).toString());
client.connected(new StringBuilder("Connected as ").append(this.getUserName()).append(" to ").append(connection.getHost()).append(":").append(connection.getPort()).append(" ").toString());
client.connected(new StringBuilder(this.getUserName()).append("@").append(connection.getHost()).append(":").append(connection.getPort()).append(" ").toString());
return true;
}
disconnect(false);