Add debug logging for logout effects
This commit is contained in:
@@ -218,10 +218,14 @@ public class ClientConnection extends AbstractConnection {
|
||||
super.disconnect();
|
||||
try {
|
||||
|
||||
if (ConfigManager.serverType.equals(Enum.ServerType.WORLDSERVER))
|
||||
if (ConfigManager.serverType.equals(Enum.ServerType.WORLDSERVER)) {
|
||||
Logger.info("ClientConnection.disconnect(): Calling WorldServer.removeClient()");
|
||||
ConfigManager.worldServer.removeClient(this);
|
||||
else
|
||||
} else {
|
||||
Logger.info("ClientConnection.disconnect(): Calling LoginServer.removeClient()");
|
||||
ConfigManager.loginServer.removeClient(this);
|
||||
}
|
||||
|
||||
|
||||
// TODO There has to be a more direct way to do this...
|
||||
SessionManager.remSession(
|
||||
|
||||
Reference in New Issue
Block a user