Added additional logging to cope with Issue 102.

This commit is contained in:
magenoxx 2011-05-15 08:43:44 +04:00
parent 0e66c5e030
commit 4b832aa974
3 changed files with 12 additions and 6 deletions

View file

@ -445,10 +445,10 @@ class UpdateTablesTask extends SwingWorker<Void, Collection<TableView>> {
protected Void doInBackground() throws Exception {
while (!isCancelled()) {
this.publish(session.getTables(roomId));
logger.info("connected players:");
/*logger.info("connected players:");
for (String player : session.getConnectedPlayers(roomId)) {
logger.info(" " + player);
}
}*/
Thread.sleep(1000);
}
return null;