mirror of
https://github.com/correl/mage.git
synced 2025-01-12 03:00:13 +00:00
Made head line connection info shorter, to have enough space if sreen size is small with new mem info.
This commit is contained in:
parent
7318ecb50e
commit
866c65c496
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue