more specific debugging for login hang

This commit is contained in:
ryannathans
2022-03-13 14:18:09 +11:00
committed by Ryan
parent 4bbda63ed2
commit 17ab7f5e92
3 changed files with 10 additions and 7 deletions
@@ -398,7 +398,6 @@ public class Player extends Entity {
@Override
public void init() {
SystemLogger.logInfo(getUsername() + " initialising...");
if (!artificial) {
getProperties().setSpawnLocation(ServerConstants.HOME_LOCATION);
getDetails().getSession().setObject(this);
@@ -203,7 +203,6 @@ public final class LoginConfiguration {
* @param player the player.
*/
public static final void config(final Player player) {
SystemLogger.logInfo("configuring player " + player.getUsername());
player.getInventory().refresh();
player.getEquipment().refresh();
player.getSkills().refresh();
@@ -222,7 +221,6 @@ public final class LoginConfiguration {
player.getInterfaceManager().close();
player.getEmoteManager().refresh();
player.getInterfaceManager().openInfoBars();
SystemLogger.logInfo("finished configuring player " + player.getUsername());
}
/**