mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Added connection info to user debug info.
This commit is contained in:
parent
fc5d730f0a
commit
596a129f4c
1 changed files with 1 additions and 1 deletions
|
@ -356,7 +356,7 @@ public class TableManager {
|
|||
Collection<User> users = UserManager.getInstance().getUsers();
|
||||
logger.debug("--------User: " + users.size() + " [userId | since | name -----------------------");
|
||||
for (User user :users) {
|
||||
logger.debug(user.getId() + " | " + formatter.format(user.getConnectionTime()) + " | " + user.getName() +" (" +user.getUserState().toString() +")");
|
||||
logger.debug(user.getId() + " | " + formatter.format(user.getConnectionTime()) + " | " + user.getName() +" (" +user.getUserState().toString() + " - " + user.getPingInfo() + ")");
|
||||
}
|
||||
ArrayList<ChatSession> chatSessions = ChatManager.getInstance().getChatSessions();
|
||||
logger.debug("------- ChatSessions: " + chatSessions.size() + " ----------------------------------");
|
||||
|
|
Loading…
Reference in a new issue