From 6b915932aeba694cba516b30bf943b6f23a743ce Mon Sep 17 00:00:00 2001 From: Lorenzo Iovino Date: Mon, 10 Jul 2017 21:34:37 +0200 Subject: [PATCH] up funzionante perfetto --- .idea/workspace.xml | 880 ++++++------ Client/src/com/texttwist/client/App.java | 2 +- .../client/controllers/GameController.java | 1 + .../client/tasks/FetchHighscore.java | 6 +- .../texttwist/client/tasks/InvitePlayers.java | 7 +- .../client/tasks/WaitForPlayers.java | 22 +- Commons/src/utilities/Logger.java | 1 + .../server/components/AccountsManager.java | 9 +- .../server/components/GameServer.java | 7 +- .../server/components/NotificationServer.java | 13 +- .../server/components/SessionsManager.java | 12 +- .../server/components/ThreadProxy.java | 71 +- .../com/texttwist/server/models/Match.java | 49 +- .../texttwist/server/tasks/ComputeScore.java | 17 +- .../com/texttwist/server/tasks/JoinMatch.java | 8 - .../texttwist/server/tasks/MatchTimeout.java | 24 +- .../server/tasks/SendInvitations.java | 7 +- .../server/tasks/WaitForPlayers.java | 30 - client_1.log | 1196 +++++++++++++++++ server.log | 755 +++++++++++ 20 files changed, 2541 insertions(+), 576 deletions(-) delete mode 100644 Server/src/com/texttwist/server/tasks/WaitForPlayers.java diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 57d8a32..c57c315 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -5,16 +5,24 @@ + - - + + + + + + + + - - + + + @@ -27,7 +35,7 @@ - + com.texttwist.client.* @@ -37,11 +45,51 @@ + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + @@ -50,90 +98,48 @@ - - + + - - + + - - + + - - + + - - + + - - - - - - - - - - - - - - - - - - - - - - - + - - + + - - + + - - - - - - - - - - - - - - - - - - - - - - + + @@ -150,36 +156,36 @@ - ma - match - match.sta - match.star - match.start - ne - new Thr - new Thre - F - Future - si - singlethr - singleth - singlet - single - singleTh - singleT + TIMEO + TIMEOU + TIMEOUT FI + TIMEOUT FIN + TIMEOUT FINI + TIMEOUT FINITO + H + HIGHSCO + HIGHSCORE + HIGHSCORES t - threa - threadsi - threads - thr - thread - threadp - threadpo - threadpool - threadpool. - bufferWo - datag - buffer + timeot + timeo + timeout + timeout fi + timeout fini + s + synchr + synchro + synchroni + synchroniz + synchronize + synchronized + co + comput + compute co + compute c + compute + compute s + compute sc @@ -193,13 +199,10 @@ @@ -263,10 +269,9 @@ - @@ -298,6 +303,8 @@ + + @@ -473,6 +480,10 @@ @@ -630,8 +641,6 @@ - - @@ -1234,46 +1243,49 @@ - + + + - - + + - - - - - - - - - - - - + + + + - - + + - + + + + + + + + + @@ -1293,76 +1305,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1371,14 +1313,6 @@ - - - - - - - - @@ -1420,22 +1354,6 @@ - - - - - - - - - - - - - - - - @@ -1444,38 +1362,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1484,132 +1370,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1618,30 +1378,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - @@ -1650,60 +1386,322 @@ - + - - + + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + - + + - - - - - - - - - - + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Client/src/com/texttwist/client/App.java b/Client/src/com/texttwist/client/App.java index 5dfe15a..ec3060a 100644 --- a/Client/src/com/texttwist/client/App.java +++ b/Client/src/com/texttwist/client/App.java @@ -71,7 +71,7 @@ public class App extends JFrame { HomePage home = new HomePage(this); - /* app.addWindowListener(new WindowAdapter() + /*app.addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent e) { diff --git a/Client/src/com/texttwist/client/controllers/GameController.java b/Client/src/com/texttwist/client/controllers/GameController.java index 5e7dc26..ab4df45 100644 --- a/Client/src/com/texttwist/client/controllers/GameController.java +++ b/Client/src/com/texttwist/client/controllers/GameController.java @@ -6,6 +6,7 @@ import com.texttwist.client.tasks.StartGame; import com.texttwist.client.tasks.WaitForPlayers; import com.texttwist.client.tasks.WaitForScore; import javax.swing.*; +import java.nio.ByteBuffer; /** * GamePage Controller diff --git a/Client/src/com/texttwist/client/tasks/FetchHighscore.java b/Client/src/com/texttwist/client/tasks/FetchHighscore.java index a40711a..b160424 100644 --- a/Client/src/com/texttwist/client/tasks/FetchHighscore.java +++ b/Client/src/com/texttwist/client/tasks/FetchHighscore.java @@ -42,23 +42,25 @@ public class FetchHighscore extends SwingWorker { while (socketChannel.read(buffer) != -1) { - buffer.clear(); - String line = new String(buffer.array(), buffer.position(), buffer.remaining()); if (line.startsWith("MESSAGE")) { Message msg = Message.toMessage(line); + //MODIFICARE QUI. IL BUG SI VERIFICA ANCHE CON 2 CLIENT, INVIANDO IL GIOCO A UN CLIENT CHE STA SULLA PAGNA DI HIGHSCORES if (msg.message.equals("HIGHSCORES") && msg.data != null) { for(int i = 0; i< msg.data.size()-1; i++){ String[] splitted = msg.data.get(i).split(":"); globalRanks.addElement(new Pair<>(splitted[0],new Integer(splitted[1]))); } + buffer.clear(); return null; } } + buffer.clear(); + } } catch (IOException e) { e.printStackTrace(); diff --git a/Client/src/com/texttwist/client/tasks/InvitePlayers.java b/Client/src/com/texttwist/client/tasks/InvitePlayers.java index e59adc5..dd61868 100644 --- a/Client/src/com/texttwist/client/tasks/InvitePlayers.java +++ b/Client/src/com/texttwist/client/tasks/InvitePlayers.java @@ -28,6 +28,7 @@ public class InvitePlayers extends SwingWorker { } @Override public Boolean doInBackground() { + buffer = ByteBuffer.allocate(1024); Message message = new Message("START_GAME", App.session.account.userName, App.session.token, userNames); byte[] byteMessage = new String(message.toString()).getBytes(); @@ -40,7 +41,6 @@ public class InvitePlayers extends SwingWorker { try { while (socketChannel.read(buffer) != -1) { - buffer.clear(); String line = new String(buffer.array(), buffer.position(), buffer.remaining()); @@ -51,9 +51,11 @@ public class InvitePlayers extends SwingWorker { new Callable() { @Override public Object call() throws Exception { + buffer.clear(); return null; } }, null); + buffer.clear(); return null; } @@ -66,13 +68,16 @@ public class InvitePlayers extends SwingWorker { public Object call() throws Exception { //In attesa dei giocatori new GamePage(Page.window); + buffer.clear(); return null; } }, null); + buffer.clear(); return null; } } + buffer.clear(); } } catch (IOException e) { e.printStackTrace(); diff --git a/Client/src/com/texttwist/client/tasks/WaitForPlayers.java b/Client/src/com/texttwist/client/tasks/WaitForPlayers.java index 3aedbec..9dc4164 100644 --- a/Client/src/com/texttwist/client/tasks/WaitForPlayers.java +++ b/Client/src/com/texttwist/client/tasks/WaitForPlayers.java @@ -37,20 +37,29 @@ public class WaitForPlayers extends SwingWorker,Default @Override public DefaultListModel doInBackground() { try { + buffer = ByteBuffer.allocate(1024); + String line1 = new String(buffer.array(), buffer.position(), buffer.remaining()); + System.out.println("Questo è il buffer prima: " + line1); TTDialog loading = new TTDialog("alert", "Waiting for users joins",null,null); buffer.flip(); - while (this.socketChannel.read(this.buffer) != -1) { - String line = new String(this.buffer.array(), this.buffer.position(), this.buffer.remaining()); + while (this.socketChannel.read(buffer) != -1) { + + String line = new String(buffer.array(), buffer.position(), buffer.remaining()); + // String line = new String() buffer.clear(); if (line.startsWith("MESSAGE")) { buffer.clear(); + System.out.println("Mi arriva questo dal server " + line); Message msg = Message.toMessage(line); + System.out.println(msg.message); if (msg.message.equals("JOIN_TIMEOUT")) { loading.dispose(); joinTimeout = true; + System.out.println("JOIN TIMEOUT ENTERED"); + new TTDialog("alert", "TIMEOUT!", new Callable() { @Override @@ -65,6 +74,8 @@ public class WaitForPlayers extends SwingWorker,Default if (msg.message.equals("MATCH_NOT_AVAILABLE")) { loading.dispose(); + System.out.println("MATCH NOT AVAILABLE ENTERED"); + joinTimeout = true; new TTDialog("alert", "THE GAME IS NOT MORE AVAILABLE!", new Callable() { @@ -80,6 +91,7 @@ public class WaitForPlayers extends SwingWorker,Default if (msg.message.equals("GAME_STARTED")) { loading.dispose(); + System.out.println("GAME STARTED ENTERED"); DefaultListModel data; if(msg.data !=null ) { @@ -96,9 +108,15 @@ public class WaitForPlayers extends SwingWorker,Default //socketChannel.close(); return words; + } else { + System.out.println("USCITO CON"); + System.out.println(line); + return new DefaultListModel<>(); } } + buffer = ByteBuffer.allocate(1024); + } } } catch (IOException e) { diff --git a/Commons/src/utilities/Logger.java b/Commons/src/utilities/Logger.java index bdc97fd..dca8644 100644 --- a/Commons/src/utilities/Logger.java +++ b/Commons/src/utilities/Logger.java @@ -31,6 +31,7 @@ public class Logger { out = new PrintWriter(bw); Date d = new Date(); out.append("LOGGER ("+name+"): " + d.toString() + " - " + msg + "\n"); + System.out.println("LOGGER ("+name+"): " + d.toString() + " - " + msg + "\n"); } catch (IOException e) { e.printStackTrace(); } diff --git a/Server/src/com/texttwist/server/components/AccountsManager.java b/Server/src/com/texttwist/server/components/AccountsManager.java index a082db2..a5b369d 100644 --- a/Server/src/com/texttwist/server/components/AccountsManager.java +++ b/Server/src/com/texttwist/server/components/AccountsManager.java @@ -39,7 +39,6 @@ public class AccountsManager { } public boolean exists(String userName) { - synchronized(users) { Iterator i = users.iterator(); while (i.hasNext()) { if (i.next().userName.equals(userName)) { @@ -47,11 +46,10 @@ public class AccountsManager { } } return false; - } + } public boolean checkPassword(String userName, String password) { - synchronized(users) { Iterator i = users.iterator(); while (i.hasNext()) { User account = i.next(); @@ -60,11 +58,10 @@ public class AccountsManager { } } return false; - } + } public User findUser(String userName){ - synchronized(users) { Iterator i = users.iterator(); while (i.hasNext()) { User u = i.next(); @@ -73,7 +70,7 @@ public class AccountsManager { } } return null; - } + } public int size(){ diff --git a/Server/src/com/texttwist/server/components/GameServer.java b/Server/src/com/texttwist/server/components/GameServer.java index b65010e..8ce4647 100644 --- a/Server/src/com/texttwist/server/components/GameServer.java +++ b/Server/src/com/texttwist/server/components/GameServer.java @@ -17,7 +17,6 @@ import java.util.Iterator; import java.util.List; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; -import java.util.concurrent.Future; import static java.nio.channels.SelectionKey.OP_ACCEPT; import static java.nio.channels.SelectionKey.OP_READ; @@ -57,16 +56,17 @@ public class GameServer implements Runnable{ datagramChannel = DatagramChannel.open(); datagramChannel.configureBlocking(true); datagramChannel.connect(address); + Logger.write("GamePage Service is running at "+this.serverPort+" port..."); wordsReceiver = new ReceiveWords(datagramChannel, bufferWords); threadPool.submit(wordsReceiver); - Logger.write("GamePage Service is running at "+this.serverPort+" port..."); } catch (IOException e) { e.printStackTrace(); } while (true) { + System.out.println("WAITING FOR MSG"); try { selector.select(); } catch (IOException e) { @@ -76,6 +76,7 @@ public class GameServer implements Runnable{ Iterator iter = selector.selectedKeys().iterator(); while (iter.hasNext()) { ByteBuffer bufferMessages = ByteBuffer.allocate(1024); + bufferMessages.clear(); SocketChannel client = null; SelectionKey key = iter.next(); iter.remove(); @@ -93,7 +94,7 @@ public class GameServer implements Runnable{ if (client.read(bufferMessages) != -1) { bufferMessages.flip(); String line = new String(bufferMessages.array(), bufferMessages.position(), bufferMessages.remaining()); - + System.out.println(line); if (line.startsWith("MESSAGE")) { SessionsManager.getInstance().printAll(); Message msg = Message.toMessage(line); diff --git a/Server/src/com/texttwist/server/components/NotificationServer.java b/Server/src/com/texttwist/server/components/NotificationServer.java index 84c4f31..54a59e6 100644 --- a/Server/src/com/texttwist/server/components/NotificationServer.java +++ b/Server/src/com/texttwist/server/components/NotificationServer.java @@ -29,11 +29,12 @@ public class NotificationServer implements INotificationServer { } public synchronized void unregisterForCallback(INotificationClient client) throws RemoteException { - if(clients.remove(client)) { + if (clients.remove(client)) { System.out.println("Client unregistered"); } else { System.out.println("Unable to unregister client"); } + } public synchronized void sendInvitations(String username, DefaultListModel users){ @@ -43,14 +44,14 @@ public class NotificationServer implements INotificationServer { while (i.hasNext()) { client = (INotificationClient) i.next(); try { + + System.out.println("SENDING INVITE TO "+users); client.sendInvite(username, users); } catch (RemoteException e) { - try { - unregisterForCallback(client); - } catch (RemoteException e1) { - e1.printStackTrace(); - } + System.out.println("Sembra down"); + //unregisterForCallback(client); } } + } } diff --git a/Server/src/com/texttwist/server/components/SessionsManager.java b/Server/src/com/texttwist/server/components/SessionsManager.java index 494b3c0..4cffd18 100644 --- a/Server/src/com/texttwist/server/components/SessionsManager.java +++ b/Server/src/com/texttwist/server/components/SessionsManager.java @@ -30,13 +30,12 @@ public class SessionsManager { } public void printAll(){ - synchronized(sessions) { Iterator i = sessions.iterator(); while (i.hasNext()) { Session elem = i.next(); System.out.println(elem.account.userName + " | " + elem.token); } - } + } public boolean remove(String userName){ @@ -51,7 +50,6 @@ public class SessionsManager { } public Session getSession(String userName) { - synchronized(sessions) { Iterator i = sessions.iterator(); while (i.hasNext()) { Session elem = i.next(); @@ -60,11 +58,10 @@ public class SessionsManager { } } return null; - } + } public boolean exists(String userName) { - synchronized(sessions) { Iterator i = sessions.iterator(); while (i.hasNext()) { Session elem = i.next(); @@ -73,12 +70,11 @@ public class SessionsManager { } } return false; - } + } public boolean isValidToken(String token) { - synchronized(sessions) { Iterator i = sessions.iterator(); while (i.hasNext()) { if (i.next().token.equals(token)) { @@ -86,7 +82,7 @@ public class SessionsManager { } } return false; - } + } } diff --git a/Server/src/com/texttwist/server/components/ThreadProxy.java b/Server/src/com/texttwist/server/components/ThreadProxy.java index ad478ea..85034f2 100644 --- a/Server/src/com/texttwist/server/components/ThreadProxy.java +++ b/Server/src/com/texttwist/server/components/ThreadProxy.java @@ -73,27 +73,28 @@ public class ThreadProxy implements Callable { Boolean joinMatchRes = joinMatch.get(); if(!joinMatchRes){ + bufferMessage = ByteBuffer.allocate(1024); + //NON FARE NULLA, ASPETTA GLI ALTRI - Message message = new Message("INVITES_ALL_SENDED", "", "", new DefaultListModel()); + Message message = new Message("INVITES_ALL_SENDED", "", "", new DefaultListModel<>()); byteMessage = message.toString().getBytes(); bufferMessage = ByteBuffer.wrap(byteMessage); socketChannel.write(bufferMessage); + } - - Future joinTimeout = threadPool.submit(new JoinTimeout(match)); - match.timeout = joinTimeout; - joinTimeout.get(); - if(match.joinTimeout){ - Future sendMessageJoinTimeout = threadPool.submit( - new SendMessageToAllPlayers(match, new Message("JOIN_TIMEOUT", "", "", new DefaultListModel<>()), socketChannel)); - Boolean sendMessageJoinTimeoutRes = sendMessageJoinTimeout.get(); - if(!sendMessageJoinTimeoutRes){ - activeMatches.remove(Match.findMatchIndex(activeMatches,match.matchCreator)); - return sendMessageJoinTimeoutRes; - } - } else { - System.out.println("TIMEOUT FINITO SENZA EFFETTI"); + Future joinTimeout = threadPool.submit(new JoinTimeout(match)); + joinTimeout.get(); + if(match.joinTimeout){ + Future sendMessageJoinTimeout = threadPool.submit( + new SendMessageToAllPlayers(match, new Message("JOIN_TIMEOUT", "", "", new DefaultListModel<>()), socketChannel)); + Boolean sendMessageJoinTimeoutRes = sendMessageJoinTimeout.get(); + if(!sendMessageJoinTimeoutRes){ + activeMatches.remove(Match.findMatchIndex(activeMatches, match.matchCreator)); + return sendMessageJoinTimeoutRes; } + } else { + System.out.println("TIMEOUT FINITO SENZA EFFETTI"); + return true; } } else { @@ -106,12 +107,12 @@ public class ThreadProxy implements Callable { } } else { - Message message = new Message("USER_NOT_ONLINE", "", "", new DefaultListModel()); + Message message = new Message("USER_NOT_ONLINE", "", "", new DefaultListModel<>()); byteMessage = new String(message.toString()).getBytes(); bufferMessage.clear(); bufferMessage = ByteBuffer.wrap(byteMessage); this.socketChannel.write(bufferMessage); - break; + return false; } } catch (InterruptedException e) { e.printStackTrace(); @@ -125,16 +126,22 @@ public class ThreadProxy implements Callable { Future> computeHighscores = threadPool.submit(new ComputeHighscores()); try { DefaultListModel computeHighscoresRes = computeHighscores.get(); - Message message = new Message("HIGHSCORES", "", "", computeHighscoresRes); - byteMessage = message.toString().getBytes(); + bufferMessage.clear(); + bufferMessage = ByteBuffer.allocate(1024); - bufferMessage = ByteBuffer.wrap(byteMessage); - try { - socketChannel.write(bufferMessage); - } catch (IOException e) { - e.printStackTrace(); - } - break; + Message message = new Message("HIGHSCORES", "", "", computeHighscoresRes); + byteMessage = message.toString().getBytes(); + + bufferMessage = ByteBuffer.wrap(byteMessage); + try { + String s = new String(bufferMessage.array(), bufferMessage.position(), bufferMessage.remaining()); + System.out.println("INVIO HIGHSCORES "+ s); + socketChannel.write(bufferMessage); + } catch (IOException e) { + e.printStackTrace(); + } + + return false; } catch (InterruptedException e) { e.printStackTrace(); } catch (ExecutionException e) { @@ -157,33 +164,35 @@ public class ThreadProxy implements Callable { SocketChannel socketClient = match.playersSocket.get(i).getValue(); if (socketClient != null) { bufferMessage.clear(); + bufferMessage = ByteBuffer.allocate(1024); + Message message = new Message("GAME_STARTED", "", "", match.letters); match.startGame(); - match.timeout.cancel(true); System.out.println("TIMEOUT CANCELLEd"); byteMessage = message.toString().getBytes(); bufferMessage = ByteBuffer.wrap(byteMessage); try { + String s = new String(bufferMessage.array(), bufferMessage.position(), bufferMessage.remaining()); + System.out.println("INVIO GAME_STARTED "+ s); socketClient.write(bufferMessage); } catch (IOException e) { } - //clientSocket.close(); } + } if (matchNotAvailable) { return false; } } - //RISPONDI CON LA CLASSIFICA - // break; - //ULTIMO A JOINARE! INIZIA GIOCO } else { if(match == null){ bufferMessage = ByteBuffer.allocate(1024); if (socketChannel != null) { + bufferMessage = ByteBuffer.allocate(1024); + Message msg = new Message("MATCH_NOT_AVAILABLE", "", null, new DefaultListModel<>()); bufferMessage.clear(); byteMessage = msg.toString().getBytes(); diff --git a/Server/src/com/texttwist/server/models/Match.java b/Server/src/com/texttwist/server/models/Match.java index 2619e80..0f16cd7 100644 --- a/Server/src/com/texttwist/server/models/Match.java +++ b/Server/src/com/texttwist/server/models/Match.java @@ -4,10 +4,11 @@ import com.texttwist.server.components.GameServer; import com.texttwist.server.tasks.MatchTimeout; import constants.Config; import javafx.util.Pair; +import models.Message; import javax.swing.*; -import java.net.DatagramSocket; -import java.net.Socket; +import java.io.IOException; +import java.net.*; import java.nio.channels.SocketChannel; import java.util.*; import java.util.concurrent.Callable; @@ -27,7 +28,7 @@ public class Match { public final String matchCreator; public Integer multicastId; public Future timeout; - public Future matchTimeout; + public boolean matchTimeout = true; public boolean joinTimeout =true; public DefaultListModel letters; protected ExecutorService threadPool = Executors.newSingleThreadExecutor(); @@ -46,15 +47,31 @@ public class Match { } - public static Match findMatch(List matches, String matchName){ - synchronized (matches) { - for (int i = 0; i < matches.size(); i++) { - if (matches.get(i).matchCreator.equals(matchName)) { - return matches.get(i); - } + public Void sendScores(){ + while (true) { + System.out.println("SENDING"); + Message msg = new Message("FINALSCORE", "SERVER", "", this.getMatchPlayersScoreAsStringList()); + + MulticastSocket multicastSocket = null; + try { + multicastSocket = new MulticastSocket(this.multicastId); + InetAddress ia = null; + ia = InetAddress.getByName(Config.ScoreMulticastServerURI); + DatagramPacket hi = new DatagramPacket(msg.toString().getBytes(), msg.toString().length(), ia, this.multicastId); + multicastSocket.send(hi); + } catch (IOException e) { + e.printStackTrace(); } - return null; + activeMatches.remove(Match.findMatchIndex(activeMatches, this.matchCreator)); } + } + public static Match findMatch(List matches, String matchName){ + for (int i = 0; i < matches.size(); i++) { + if (matches.get(i).matchCreator.equals(matchName)) { + return matches.get(i); + } + } + return null; } @@ -93,19 +110,17 @@ public class Match { public void startGame(){ this.started=true; - this.matchTimeout = threadPool.submit(new MatchTimeout()); + threadPool.submit(new MatchTimeout(this)); } public void setScore(String player, Integer score){ Match m = findMatchByPlayer(player); - synchronized (m) { - m.printAll(); + m.printAll(); - for (int i = 0; i < m.playersScore.size(); i++) { - if (m.playersScore.get(i).getKey().equals(player)) { - m.playersScore.set(i, new Pair(player, score)); - } + for (int i = 0; i < m.playersScore.size(); i++) { + if (m.playersScore.get(i).getKey().equals(player)) { + m.playersScore.set(i, new Pair(player, score)); } } } diff --git a/Server/src/com/texttwist/server/tasks/ComputeScore.java b/Server/src/com/texttwist/server/tasks/ComputeScore.java index e34fb18..4a37b3f 100644 --- a/Server/src/com/texttwist/server/tasks/ComputeScore.java +++ b/Server/src/com/texttwist/server/tasks/ComputeScore.java @@ -36,7 +36,6 @@ public class ComputeScore implements Callable { System.out.println(match); System.out.println("COMPUTE SCORE STAsssssRTED"); - synchronized (match) { System.out.print("CALCOLO LO SCORE PER " + match.matchCreator); Integer score = 0; @@ -54,29 +53,19 @@ public class ComputeScore implements Callable { if(match.allPlayersSendedHisScore()) { - match.matchTimeout.cancel(true); + match.matchTimeout = false; + System.out.println("MATCH TIMEOUT CANCELLATO"); //channel.close(); //Start receive words: tempo masimo 5 minuti per completare l'invio delle lettere. match.setUndefinedScorePlayersToZero(); System.out.println("SEND BROADCAST"); - while (true) { - System.out.println("SENDING"); - Message msg = new Message("FINALSCORE", "SERVER", "", match.getMatchPlayersScoreAsStringList()); + match.sendScores(); - MulticastSocket multicastSocket = new MulticastSocket(match.multicastId); - InetAddress ia = InetAddress.getByName(Config.ScoreMulticastServerURI); - DatagramPacket hi = new DatagramPacket(msg.toString().getBytes(), msg.toString().length(), ia, match.multicastId); - multicastSocket.send(hi); - activeMatches.remove(Match.findMatchIndex(activeMatches, match.matchCreator)); - //multicastSocket.disconnect(); - //multicastSocket.close(); - } } return score; - } } diff --git a/Server/src/com/texttwist/server/tasks/JoinMatch.java b/Server/src/com/texttwist/server/tasks/JoinMatch.java index 9224d9e..e931c13 100644 --- a/Server/src/com/texttwist/server/tasks/JoinMatch.java +++ b/Server/src/com/texttwist/server/tasks/JoinMatch.java @@ -1,18 +1,11 @@ package com.texttwist.server.tasks; -import com.sun.org.apache.xml.internal.security.algorithms.MessageDigestAlgorithm; import com.texttwist.server.models.Match; import javafx.util.Pair; -import models.Message; - import javax.swing.*; -import java.net.Socket; -import java.nio.ByteBuffer; import java.nio.channels.SocketChannel; import java.util.concurrent.Callable; - import static com.texttwist.server.components.GameServer.activeMatches; -import static com.texttwist.server.models.Match.findMatch; /** * Created by loke on 23/06/2017. @@ -28,7 +21,6 @@ public class JoinMatch implements Callable { this.socketChannel = socketChannel; } - @Override public Boolean call() throws Exception { final Match thisMatch = Match.findMatch(activeMatches, this.matchName); diff --git a/Server/src/com/texttwist/server/tasks/MatchTimeout.java b/Server/src/com/texttwist/server/tasks/MatchTimeout.java index 7093182..3738550 100644 --- a/Server/src/com/texttwist/server/tasks/MatchTimeout.java +++ b/Server/src/com/texttwist/server/tasks/MatchTimeout.java @@ -2,26 +2,42 @@ package com.texttwist.server.tasks; import com.sun.org.apache.xpath.internal.operations.Bool; import com.texttwist.server.models.Match; +import constants.Config; +import models.Message; +import java.net.DatagramPacket; +import java.net.InetAddress; +import java.net.MulticastSocket; import java.util.concurrent.Callable; +import static com.texttwist.server.components.GameServer.activeMatches; + /** * Created by loke on 27/06/2017. */ public class MatchTimeout implements Callable { - - public MatchTimeout() { + private Match match; + public MatchTimeout(Match match) { + this.match = match; } @Override public Boolean call() throws Exception { try { - Thread.currentThread().sleep(3*60*1000); //TODO 5*60*1000 + Thread.currentThread().sleep(1*60*1000); //TODO 5*60*1000 + match.setUndefinedScorePlayersToZero(); + + if(match.matchTimeout) { + System.out.println("SEND BROADCAST BECAUSE TIMEOUT"); + match.sendScores(); + return true; + } return false; + } catch (InterruptedException e) { - return true; + return false; } } diff --git a/Server/src/com/texttwist/server/tasks/SendInvitations.java b/Server/src/com/texttwist/server/tasks/SendInvitations.java index 960fd0e..db1693c 100644 --- a/Server/src/com/texttwist/server/tasks/SendInvitations.java +++ b/Server/src/com/texttwist/server/tasks/SendInvitations.java @@ -16,8 +16,8 @@ import java.util.concurrent.Callable; * Created by loke on 19/06/2017. */ public class SendInvitations implements Callable { - private final DefaultListModel users; - private final String sender; + private DefaultListModel users; + private String sender; public SendInvitations(String sender, DefaultListModel users) { this.users = users; @@ -27,10 +27,13 @@ public class SendInvitations implements Callable { @Override public Boolean call() throws Exception { try { + System.out.println("INVIA INVITO A" + users); + Server.notificationServer.sendInvitations(sender, users); } catch (Exception e) { System.out.println("Eccezione" + e); + e.printStackTrace(); } return true; diff --git a/Server/src/com/texttwist/server/tasks/WaitForPlayers.java b/Server/src/com/texttwist/server/tasks/WaitForPlayers.java deleted file mode 100644 index eb6e437..0000000 --- a/Server/src/com/texttwist/server/tasks/WaitForPlayers.java +++ /dev/null @@ -1,30 +0,0 @@ -package com.texttwist.server.tasks; - -import com.texttwist.server.Server; -import com.texttwist.server.components.NotificationServer; -import com.texttwist.server.models.Match; -import constants.Config; -import interfaces.INotificationServer; - -import javax.swing.*; -import java.rmi.registry.LocateRegistry; -import java.rmi.registry.Registry; -import java.rmi.server.UnicastRemoteObject; -import java.util.concurrent.Callable; - -/** - * Created by loke on 19/06/2017. - */ -public class WaitForPlayers implements Callable { - private final Match match; - private String sender; - - public WaitForPlayers(Match match) { - this.match = match; - } - - @Override - public Boolean call() throws Exception { - return true; - } -} diff --git a/client_1.log b/client_1.log index d7c1d9b..22ed88f 100644 --- a/client_1.log +++ b/client_1.log @@ -6476,3 +6476,1199 @@ LOGGER (Client1): Sun Jul 09 16:45:15 CEST 2017 - Invoked invitation with userna LOGGER (Client1): Sun Jul 09 16:45:15 CEST 2017 - Invoked invitation with username=c|[d] LOGGER (Client1): Sun Jul 09 16:45:15 CEST 2017 - c ti ha sfidato! LOGGER (Client1): Sun Jul 09 16:45:15 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 16:51:58 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:51:59 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:52:00 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:52:03 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:52:18 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:52:18 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:52:18 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:52:18 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:52:18 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:52:23 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Sun Jul 09 16:52:23 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Sun Jul 09 16:52:23 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:52:23 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Sun Jul 09 16:52:23 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Sun Jul 09 16:52:40 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 16:52:40 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 16:52:40 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:52:40 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 16:52:40 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 16:52:44 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 16:52:44 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:52:44 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 16:52:44 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 16:52:44 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 16:53:01 CEST 2017 - Invoked invitation with username=a|[b, c] +LOGGER (Client1): Sun Jul 09 16:53:01 CEST 2017 - Invoked invitation with username=a|[b, c] +LOGGER (Client1): Sun Jul 09 16:53:01 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:53:01 CEST 2017 - Invoked invitation with username=a|[b, c] +LOGGER (Client1): Sun Jul 09 16:53:01 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:53:01 CEST 2017 - Invoked invitation with username=a|[b, c] +LOGGER (Client1): Sun Jul 09 16:53:17 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Sun Jul 09 16:53:17 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Sun Jul 09 16:53:17 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:53:17 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Sun Jul 09 16:53:17 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Sun Jul 09 16:54:26 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:56:00 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:56:02 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:56:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:56:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:56:08 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:56:28 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:56:28 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:56:28 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:57:19 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:57:19 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:57:19 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:05:16 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:05:18 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:05:25 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:05:25 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:05:25 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:05:38 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:05:40 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:06:02 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 17:06:02 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 17:06:02 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 17:06:02 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:06:02 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 17:06:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:06:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:06:10 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:06:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:06:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:06:40 CEST 2017 - Invoked invitation with username=c|[a, b, d] +LOGGER (Client1): Sun Jul 09 17:06:40 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:06:40 CEST 2017 - Invoked invitation with username=c|[a, b, d] +LOGGER (Client1): Sun Jul 09 17:06:40 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:06:40 CEST 2017 - Invoked invitation with username=c|[a, b, d] +LOGGER (Client1): Sun Jul 09 17:06:40 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:06:40 CEST 2017 - Invoked invitation with username=c|[a, b, d] +LOGGER (Client1): Sun Jul 09 17:07:02 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:07:02 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:07:02 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:07:02 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:07:02 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:07:16 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Sun Jul 09 17:07:16 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Sun Jul 09 17:07:16 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:07:16 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Sun Jul 09 17:07:16 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Sun Jul 09 17:07:30 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:07:31 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:07:48 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Sun Jul 09 17:07:48 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Sun Jul 09 17:07:48 CEST 2017 - f ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:07:48 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Sun Jul 09 17:07:48 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Sun Jul 09 17:07:48 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Sun Jul 09 17:07:48 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Sun Jul 09 17:08:15 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 17:08:27 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:08:28 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:08:35 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:09:05 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:09:07 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:09:19 CEST 2017 - Invoked invitation with username=a|[da] +LOGGER (Client1): Sun Jul 09 17:09:19 CEST 2017 - Invoked invitation with username=a|[da] +LOGGER (Client1): Sun Jul 09 17:09:19 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:09:26 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:09:42 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:09:42 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:09:42 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:09:42 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:10:20 CEST 2017 - Invoked invitation with username=da|[b] +LOGGER (Client1): Sun Jul 09 17:10:20 CEST 2017 - Invoked invitation with username=da|[b] +LOGGER (Client1): Sun Jul 09 17:10:20 CEST 2017 - Invoked invitation with username=da|[b] +LOGGER (Client1): Sun Jul 09 17:10:20 CEST 2017 - da ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:10:33 CEST 2017 - Invoked invitation with username=a|[da] +LOGGER (Client1): Sun Jul 09 17:10:33 CEST 2017 - Invoked invitation with username=a|[da] +LOGGER (Client1): Sun Jul 09 17:10:33 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:10:33 CEST 2017 - Invoked invitation with username=a|[da] +LOGGER (Client1): Sun Jul 09 17:10:39 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:11:05 CEST 2017 - Invoked invitation with username=da|[e] +LOGGER (Client1): Sun Jul 09 17:11:05 CEST 2017 - Invoked invitation with username=da|[e] +LOGGER (Client1): Sun Jul 09 17:11:05 CEST 2017 - Invoked invitation with username=da|[e] +LOGGER (Client1): Sun Jul 09 17:11:05 CEST 2017 - Invoked invitation with username=da|[e] +LOGGER (Client1): Sun Jul 09 17:11:05 CEST 2017 - da ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:11:11 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:11:11 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:11:11 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:11:11 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:11:11 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:11:27 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Sun Jul 09 17:11:27 CEST 2017 - e ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:11:27 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Sun Jul 09 17:11:27 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Sun Jul 09 17:11:27 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Sun Jul 09 17:11:31 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:11:37 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Sun Jul 09 17:11:37 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:11:37 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Sun Jul 09 17:11:37 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Sun Jul 09 17:11:37 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Sun Jul 09 17:11:37 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Sun Jul 09 17:12:54 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:12:55 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:12:57 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:12:58 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:13:18 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Sun Jul 09 17:13:18 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Sun Jul 09 17:13:18 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:13:18 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Sun Jul 09 17:13:18 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Sun Jul 09 17:13:21 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:13:21 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:13:21 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:13:21 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:13:21 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:13:38 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Sun Jul 09 17:13:38 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Sun Jul 09 17:13:38 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:13:38 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Sun Jul 09 17:13:38 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Sun Jul 09 17:13:43 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Sun Jul 09 17:13:43 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:13:43 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Sun Jul 09 17:13:43 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Sun Jul 09 17:13:43 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Sun Jul 09 17:14:43 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:14:44 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:14:50 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:14:50 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:14:50 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:15:04 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:15:04 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:15:04 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:15:08 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:15:10 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:15:29 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 17:15:29 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 17:15:29 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 17:15:29 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:15:29 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 17:15:35 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Sun Jul 09 17:15:35 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:15:35 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Sun Jul 09 17:15:35 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Sun Jul 09 17:15:35 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Sun Jul 09 17:16:15 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:16:16 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:16:25 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:16:25 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:16:25 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:16:30 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:16:37 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Sun Jul 09 17:16:37 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Sun Jul 09 17:16:37 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:16:37 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Sun Jul 09 17:16:50 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Sun Jul 09 17:16:50 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Sun Jul 09 17:16:51 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Sun Jul 09 17:16:51 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:17:02 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 17:17:02 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 17:17:02 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 17:17:02 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:17:19 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:17:20 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:17:29 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:17:29 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:17:29 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:17:33 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:17:45 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Sun Jul 09 17:17:45 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:17:45 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Sun Jul 09 17:17:45 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Sun Jul 09 17:17:55 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Sun Jul 09 17:17:55 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Sun Jul 09 17:17:55 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Sun Jul 09 17:17:55 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:18:09 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Sun Jul 09 17:18:09 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Sun Jul 09 17:18:09 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:18:09 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Sun Jul 09 17:18:19 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 17:18:19 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 17:18:19 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 17:18:19 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:18:29 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:18:29 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:18:29 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:18:29 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:18:38 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Sun Jul 09 17:18:38 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Sun Jul 09 17:18:38 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:18:38 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Sun Jul 09 17:18:44 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:18:51 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Sun Jul 09 17:18:51 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Sun Jul 09 17:18:51 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:18:51 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Sun Jul 09 17:18:51 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Sun Jul 09 17:25:51 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:25:52 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:26:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:26:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:26:02 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:26:07 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:26:20 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Sun Jul 09 17:26:20 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Sun Jul 09 17:26:20 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:26:20 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Sun Jul 09 17:26:31 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 17:26:31 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 17:26:31 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 17:26:31 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:26:39 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:26:45 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Sun Jul 09 17:26:45 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Sun Jul 09 17:26:45 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:26:45 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Sun Jul 09 17:26:45 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Sun Jul 09 17:26:56 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 17:26:56 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 17:26:56 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 17:26:56 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 17:26:56 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:27:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:27:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:27:02 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:27:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:27:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:27:12 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Sun Jul 09 17:27:12 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Sun Jul 09 17:27:12 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:27:12 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Sun Jul 09 17:27:12 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Sun Jul 09 17:27:19 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:27:40 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Sun Jul 09 17:27:40 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Sun Jul 09 17:27:40 CEST 2017 - e ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:27:40 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Sun Jul 09 17:27:40 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Sun Jul 09 17:27:40 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Sun Jul 09 17:27:52 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 17:27:52 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 17:27:52 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 17:27:52 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 17:27:52 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:27:52 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 17:31:33 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:31:34 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:31:36 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:31:37 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:31:40 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:31:41 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:32:19 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Sun Jul 09 17:32:19 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Sun Jul 09 17:32:19 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Sun Jul 09 17:32:19 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Sun Jul 09 17:32:19 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Sun Jul 09 17:32:19 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Sun Jul 09 17:32:19 CEST 2017 - f ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:32:21 CEST 2017 - Invoked invitation with username=c|[e] +LOGGER (Client1): Sun Jul 09 17:32:21 CEST 2017 - Invoked invitation with username=c|[e] +LOGGER (Client1): Sun Jul 09 17:32:21 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:32:21 CEST 2017 - Invoked invitation with username=c|[e] +LOGGER (Client1): Sun Jul 09 17:32:21 CEST 2017 - Invoked invitation with username=c|[e] +LOGGER (Client1): Sun Jul 09 17:32:21 CEST 2017 - Invoked invitation with username=c|[e] +LOGGER (Client1): Sun Jul 09 17:32:21 CEST 2017 - Invoked invitation with username=c|[e] +LOGGER (Client1): Sun Jul 09 17:32:29 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Sun Jul 09 17:32:29 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:32:29 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Sun Jul 09 17:32:29 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Sun Jul 09 17:32:29 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Sun Jul 09 17:32:29 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Sun Jul 09 17:32:29 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Sun Jul 09 17:32:36 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Sun Jul 09 17:32:36 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Sun Jul 09 17:32:36 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Sun Jul 09 17:32:36 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Sun Jul 09 17:32:36 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Sun Jul 09 17:32:36 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:32:36 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Sun Jul 09 17:32:43 CEST 2017 - Invoked invitation with username=e|[b] +LOGGER (Client1): Sun Jul 09 17:32:43 CEST 2017 - Invoked invitation with username=e|[b] +LOGGER (Client1): Sun Jul 09 17:32:43 CEST 2017 - Invoked invitation with username=e|[b] +LOGGER (Client1): Sun Jul 09 17:32:43 CEST 2017 - e ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:32:43 CEST 2017 - Invoked invitation with username=e|[b] +LOGGER (Client1): Sun Jul 09 17:32:43 CEST 2017 - Invoked invitation with username=e|[b] +LOGGER (Client1): Sun Jul 09 17:32:43 CEST 2017 - Invoked invitation with username=e|[b] +LOGGER (Client1): Sun Jul 09 17:32:53 CEST 2017 - Invoked invitation with username=f|[e] +LOGGER (Client1): Sun Jul 09 17:32:53 CEST 2017 - Invoked invitation with username=f|[e] +LOGGER (Client1): Sun Jul 09 17:32:53 CEST 2017 - f ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:32:53 CEST 2017 - Invoked invitation with username=f|[e] +LOGGER (Client1): Sun Jul 09 17:32:53 CEST 2017 - Invoked invitation with username=f|[e] +LOGGER (Client1): Sun Jul 09 17:32:53 CEST 2017 - Invoked invitation with username=f|[e] +LOGGER (Client1): Sun Jul 09 17:32:53 CEST 2017 - Invoked invitation with username=f|[e] +LOGGER (Client1): Sun Jul 09 17:32:58 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:32:58 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:32:58 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:32:58 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:32:58 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:32:58 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:32:58 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:39:14 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:39:16 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:39:17 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:39:19 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:39:20 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:39:37 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:40:01 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Sun Jul 09 17:40:01 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Sun Jul 09 17:40:01 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Sun Jul 09 17:40:01 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Sun Jul 09 17:40:01 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Sun Jul 09 17:40:01 CEST 2017 - e ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:40:01 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Sun Jul 09 17:40:05 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Sun Jul 09 17:40:05 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Sun Jul 09 17:40:05 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Sun Jul 09 17:40:05 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:40:05 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Sun Jul 09 17:40:05 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Sun Jul 09 17:40:05 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Sun Jul 09 17:40:10 CEST 2017 - Invoked invitation with username=b|[f] +LOGGER (Client1): Sun Jul 09 17:40:11 CEST 2017 - Invoked invitation with username=b|[f] +LOGGER (Client1): Sun Jul 09 17:40:11 CEST 2017 - Invoked invitation with username=b|[f] +LOGGER (Client1): Sun Jul 09 17:40:11 CEST 2017 - Invoked invitation with username=b|[f] +LOGGER (Client1): Sun Jul 09 17:40:11 CEST 2017 - Invoked invitation with username=b|[f] +LOGGER (Client1): Sun Jul 09 17:40:11 CEST 2017 - Invoked invitation with username=b|[f] +LOGGER (Client1): Sun Jul 09 17:40:11 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:40:19 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:40:19 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:40:19 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:40:19 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:40:19 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:40:19 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:40:19 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 17:40:22 CEST 2017 - Invoked invitation with username=d|[e] +LOGGER (Client1): Sun Jul 09 17:40:22 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:40:22 CEST 2017 - Invoked invitation with username=d|[e] +LOGGER (Client1): Sun Jul 09 17:40:22 CEST 2017 - Invoked invitation with username=d|[e] +LOGGER (Client1): Sun Jul 09 17:40:22 CEST 2017 - Invoked invitation with username=d|[e] +LOGGER (Client1): Sun Jul 09 17:40:22 CEST 2017 - Invoked invitation with username=d|[e] +LOGGER (Client1): Sun Jul 09 17:40:22 CEST 2017 - Invoked invitation with username=d|[e] +LOGGER (Client1): Sun Jul 09 17:45:34 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:45:36 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:45:43 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:45:43 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 17:45:43 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:45:50 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:45:51 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 17:45:59 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Sun Jul 09 17:45:59 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Sun Jul 09 17:45:59 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Sun Jul 09 17:46:28 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Sun Jul 09 17:46:28 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Sun Jul 09 17:46:28 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:46:28 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Sun Jul 09 17:46:43 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 17:46:43 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 17:46:43 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 17:46:43 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 17:46:43 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 17:46:50 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 17:46:50 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 17:46:50 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 17:46:50 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 17:46:50 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 10:10:02 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:10:04 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:10:18 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:11:25 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:11:27 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:11:43 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 10:11:43 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 10:11:43 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 10:11:58 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 10:11:58 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 10:11:58 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 10:12:17 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:19:52 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:19:55 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:20:11 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:26:43 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:26:44 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:26:51 CEST 2017 - Invoked invitation with username=b|[] +LOGGER (Client1): Mon Jul 10 10:26:56 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:27:09 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:27:30 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 10:27:30 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 10:28:15 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:28:17 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:28:24 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:30:03 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:30:06 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:30:14 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:33:48 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:33:49 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:33:56 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:45:08 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:45:10 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:45:18 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:47:14 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:47:37 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:47:43 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:47:54 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 10:47:55 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 10:47:55 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 10:48:20 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 10:48:20 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 10:48:21 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 10:54:00 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:54:02 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:54:09 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 10:54:15 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 10:54:15 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 10:54:15 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 10:54:30 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 10:54:30 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 10:54:30 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 10:54:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 10:54:44 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 10:54:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 10:55:04 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 10:55:04 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 10:55:04 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 10:55:18 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 10:55:18 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 10:55:18 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 10:55:32 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 10:55:32 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 10:55:32 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 10:55:49 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 10:55:49 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 10:55:49 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 10:55:50 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 11:03:18 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 11:05:58 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 11:06:01 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 11:06:42 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 11:06:51 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 11:06:52 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 11:06:52 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 11:07:08 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 11:07:09 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 11:07:09 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 11:07:21 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 11:07:21 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 11:07:22 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 12:00:52 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 12:00:54 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 12:01:01 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 12:01:08 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 12:01:08 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 12:01:08 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 12:01:25 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 12:01:25 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 12:01:25 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 12:01:32 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 12:01:43 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 12:01:43 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 12:01:43 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 12:01:43 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 12:01:57 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 12:01:57 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 12:01:57 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 12:01:57 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 12:02:11 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 12:02:11 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 12:02:11 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 12:02:11 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 12:12:08 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 12:12:10 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 12:12:26 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 12:12:26 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 12:12:26 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 12:12:42 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 12:12:42 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 12:12:42 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 12:12:47 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 12:12:56 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 12:12:56 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 12:12:56 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 12:12:56 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 12:13:01 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 12:13:11 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 12:13:11 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 12:13:11 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 12:13:11 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 12:13:11 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 12:14:20 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 12:14:20 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 12:14:20 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 12:14:20 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 12:21:18 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 12:21:20 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 12:21:27 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 12:21:34 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 12:21:34 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 12:21:34 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 12:21:34 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 12:21:41 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 12:21:50 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 12:21:50 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 12:21:50 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 12:21:50 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 12:21:50 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 12:22:01 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 12:22:01 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 12:22:01 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 12:22:01 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 12:22:01 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 12:24:44 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 12:24:47 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 12:24:55 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 12:24:55 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 12:24:55 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 12:24:58 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 12:25:05 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 12:25:05 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 12:25:05 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 12:25:05 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 12:25:10 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 12:25:16 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 12:25:16 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 12:25:16 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 12:25:16 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 12:25:16 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 12:25:22 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 12:25:22 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 12:25:22 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 12:25:22 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 12:25:22 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 12:25:33 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 12:25:33 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 12:25:33 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 12:25:33 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 12:25:33 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 12:32:19 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 12:32:20 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 12:32:30 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 12:32:35 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 12:32:35 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 12:32:35 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 12:32:35 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 12:32:40 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 12:32:54 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 12:32:54 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 12:32:54 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 12:32:54 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 12:32:54 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 12:33:01 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 12:33:01 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 12:33:01 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 12:33:01 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 12:33:01 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 12:37:05 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 12:37:06 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 12:37:15 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 12:37:15 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 12:37:15 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 12:37:27 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 12:37:27 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 12:37:27 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 12:37:31 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:15:37 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:15:39 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:15:48 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 18:15:48 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 18:15:48 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:16:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:16:08 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:16:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:18:36 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:18:38 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:18:45 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:18:45 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:18:45 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:18:59 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 18:18:59 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:18:59 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 18:19:13 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:19:14 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:19:14 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:19:22 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:19:29 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 18:19:29 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 18:19:29 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 18:19:29 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:19:34 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:19:47 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 18:19:47 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 18:19:48 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 18:19:48 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:19:48 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 18:19:56 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:19:56 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:19:56 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:19:56 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:19:56 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:23:10 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:23:13 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:23:24 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:23:24 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:23:24 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:25:58 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:26:01 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:26:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:26:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:26:10 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:26:15 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:26:47 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:26:49 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:26:57 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:26:57 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:26:57 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:27:02 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:27:12 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 18:27:12 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 18:27:12 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 18:27:12 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:27:27 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 18:27:27 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 18:27:27 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 18:27:27 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:27:32 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:27:41 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 18:27:41 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 18:27:41 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:27:41 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 18:27:41 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 18:27:48 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 18:27:48 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:27:48 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 18:27:48 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 18:27:48 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 18:31:10 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:31:12 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:31:20 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:31:20 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:31:20 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:31:24 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:31:30 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 18:31:30 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 18:31:30 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:31:30 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 18:31:38 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:31:52 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 18:31:52 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 18:31:52 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:31:52 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 18:31:52 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 18:32:00 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 18:32:00 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 18:32:00 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 18:32:00 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:32:00 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 18:33:35 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:33:37 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:33:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:33:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:33:44 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:33:49 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:34:04 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 18:34:04 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 18:34:04 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:34:04 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 18:34:09 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:34:18 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 18:34:18 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 18:34:18 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:34:18 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 18:34:18 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 18:34:24 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 18:34:24 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:34:24 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 18:34:24 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 18:34:24 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 18:36:43 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:36:44 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:36:58 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 18:36:58 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:36:58 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 18:37:03 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:37:04 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:37:15 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 18:37:15 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 18:37:15 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:37:16 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 18:37:29 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 18:37:29 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:37:29 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 18:37:29 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 18:37:29 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 18:37:37 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 18:37:37 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:37:37 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 18:37:37 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 18:37:37 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 18:37:47 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 18:37:47 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 18:37:47 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 18:37:47 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:37:47 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 18:39:52 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:39:57 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:40:05 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 18:40:05 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 18:40:05 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:40:10 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:40:11 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:40:23 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 18:40:23 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 18:40:23 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 18:40:23 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:40:23 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 18:40:31 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 18:40:31 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 18:40:31 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:40:31 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 18:40:31 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 18:40:38 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 18:40:38 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 18:40:38 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 18:40:38 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:40:38 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 18:40:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:40:44 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:40:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:40:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:40:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:40:50 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 18:40:50 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 18:40:50 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 18:40:50 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 18:40:50 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:45:19 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:45:21 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:45:22 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:45:40 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:45:49 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 18:45:49 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:45:49 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 18:45:49 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 18:45:49 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 18:45:56 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 18:45:56 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 18:45:56 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 18:45:56 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:45:56 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 18:46:07 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 18:46:07 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 18:46:07 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:46:07 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 18:46:07 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 18:46:16 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 18:46:16 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 18:46:16 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 18:46:16 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:46:16 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 18:46:26 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:46:26 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:46:26 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:46:26 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:46:26 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:46:33 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 18:46:33 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 18:46:33 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 18:46:33 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:46:33 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 18:46:41 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 18:46:41 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 18:46:41 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:46:41 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 18:46:41 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 18:46:50 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 18:46:50 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 18:46:50 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 18:46:50 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 18:46:50 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:47:00 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 18:47:00 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 18:47:00 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 18:47:00 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 18:47:00 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:47:08 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 18:47:08 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 18:47:08 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 18:47:08 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:47:08 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 18:47:32 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:47:33 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 18:47:43 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:47:43 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:47:43 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:47:56 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:47:56 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 18:47:56 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:48:09 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 18:48:09 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 18:48:09 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 20:58:35 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 20:58:37 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 20:58:42 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 20:59:31 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 20:59:33 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 20:59:43 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 20:59:43 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 20:59:43 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 20:59:55 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 20:59:55 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 20:59:55 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 21:00:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:00:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:00:08 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:00:20 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 21:00:20 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:00:20 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 21:00:35 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:00:35 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:00:35 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:00:49 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 21:00:49 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:00:49 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 21:01:03 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:01:03 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:01:03 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:01:16 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 21:01:16 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:01:16 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 21:01:29 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:01:29 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:01:29 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:01:42 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:01:42 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:01:42 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:07:18 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 21:07:20 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 21:07:26 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:07:26 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:07:26 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:07:38 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:07:38 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:07:38 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:07:50 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 21:07:50 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:07:50 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 21:08:39 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 21:08:47 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 21:08:52 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:08:52 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:08:52 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:09:04 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:09:04 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:09:04 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:09:16 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 21:09:16 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 21:09:16 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:15:21 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 21:15:23 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 21:15:31 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:15:31 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:15:31 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:15:36 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 21:15:43 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 21:15:43 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 21:15:43 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:15:43 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 21:15:53 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:15:53 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:15:53 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:15:53 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:16:00 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 21:16:06 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 21:16:06 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 21:16:06 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 21:16:06 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:16:07 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 21:19:20 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 21:19:25 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 21:19:29 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:19:29 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:19:29 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:19:36 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 21:19:38 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 21:19:41 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 21:19:42 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 21:20:13 CEST 2017 - Invoked invitation with username=f|[e] +LOGGER (Client1): Mon Jul 10 21:20:13 CEST 2017 - Invoked invitation with username=f|[e] +LOGGER (Client1): Mon Jul 10 21:20:13 CEST 2017 - Invoked invitation with username=f|[e] +LOGGER (Client1): Mon Jul 10 21:20:13 CEST 2017 - Invoked invitation with username=f|[e] +LOGGER (Client1): Mon Jul 10 21:20:13 CEST 2017 - f ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:20:13 CEST 2017 - Invoked invitation with username=f|[e] +LOGGER (Client1): Mon Jul 10 21:20:13 CEST 2017 - Invoked invitation with username=f|[e] +LOGGER (Client1): Mon Jul 10 21:20:17 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 21:20:17 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:20:17 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 21:20:17 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 21:20:17 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 21:20:17 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 21:20:17 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 21:20:23 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 21:20:23 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 21:20:23 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 21:20:23 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:20:23 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 21:20:23 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 21:20:23 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 21:20:28 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Mon Jul 10 21:20:28 CEST 2017 - e ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:20:28 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Mon Jul 10 21:20:28 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Mon Jul 10 21:20:28 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Mon Jul 10 21:20:28 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Mon Jul 10 21:20:28 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Mon Jul 10 21:20:35 CEST 2017 - Invoked invitation with username=f|[c] +LOGGER (Client1): Mon Jul 10 21:20:35 CEST 2017 - Invoked invitation with username=f|[c] +LOGGER (Client1): Mon Jul 10 21:20:35 CEST 2017 - Invoked invitation with username=f|[c] +LOGGER (Client1): Mon Jul 10 21:20:35 CEST 2017 - Invoked invitation with username=f|[c] +LOGGER (Client1): Mon Jul 10 21:20:35 CEST 2017 - Invoked invitation with username=f|[c] +LOGGER (Client1): Mon Jul 10 21:20:35 CEST 2017 - Invoked invitation with username=f|[c] +LOGGER (Client1): Mon Jul 10 21:20:35 CEST 2017 - f ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:20:41 CEST 2017 - Invoked invitation with username=e|[] +LOGGER (Client1): Mon Jul 10 21:20:41 CEST 2017 - Invoked invitation with username=e|[] +LOGGER (Client1): Mon Jul 10 21:20:41 CEST 2017 - Invoked invitation with username=e|[] +LOGGER (Client1): Mon Jul 10 21:20:41 CEST 2017 - Invoked invitation with username=e|[] +LOGGER (Client1): Mon Jul 10 21:20:41 CEST 2017 - Invoked invitation with username=e|[] +LOGGER (Client1): Mon Jul 10 21:20:41 CEST 2017 - Invoked invitation with username=e|[] +LOGGER (Client1): Mon Jul 10 21:20:42 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Mon Jul 10 21:20:42 CEST 2017 - e ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:20:42 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Mon Jul 10 21:20:42 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Mon Jul 10 21:20:42 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Mon Jul 10 21:20:42 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Mon Jul 10 21:20:42 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Mon Jul 10 21:20:48 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Mon Jul 10 21:20:48 CEST 2017 - e ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:20:48 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Mon Jul 10 21:20:48 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Mon Jul 10 21:20:48 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Mon Jul 10 21:20:48 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Mon Jul 10 21:20:48 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Mon Jul 10 21:20:59 CEST 2017 - Invoked invitation with username=e|[d] +LOGGER (Client1): Mon Jul 10 21:20:59 CEST 2017 - Invoked invitation with username=e|[d] +LOGGER (Client1): Mon Jul 10 21:20:59 CEST 2017 - Invoked invitation with username=e|[d] +LOGGER (Client1): Mon Jul 10 21:20:59 CEST 2017 - e ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:20:59 CEST 2017 - Invoked invitation with username=e|[d] +LOGGER (Client1): Mon Jul 10 21:20:59 CEST 2017 - Invoked invitation with username=e|[d] +LOGGER (Client1): Mon Jul 10 21:20:59 CEST 2017 - Invoked invitation with username=e|[d] +LOGGER (Client1): Mon Jul 10 21:21:31 CEST 2017 - Invoked invitation with username=e|[d] +LOGGER (Client1): Mon Jul 10 21:21:31 CEST 2017 - Invoked invitation with username=e|[d] +LOGGER (Client1): Mon Jul 10 21:21:31 CEST 2017 - Invoked invitation with username=e|[d] +LOGGER (Client1): Mon Jul 10 21:21:31 CEST 2017 - e ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:21:31 CEST 2017 - Invoked invitation with username=e|[d] +LOGGER (Client1): Mon Jul 10 21:21:31 CEST 2017 - Invoked invitation with username=e|[d] +LOGGER (Client1): Mon Jul 10 21:21:31 CEST 2017 - Invoked invitation with username=e|[d] +LOGGER (Client1): Mon Jul 10 21:22:00 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Mon Jul 10 21:22:00 CEST 2017 - f ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:22:00 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Mon Jul 10 21:22:00 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Mon Jul 10 21:22:00 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Mon Jul 10 21:22:00 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Mon Jul 10 21:22:00 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Mon Jul 10 21:22:10 CEST 2017 - Invoked invitation with username=e|[b] +LOGGER (Client1): Mon Jul 10 21:22:10 CEST 2017 - Invoked invitation with username=e|[b] +LOGGER (Client1): Mon Jul 10 21:22:10 CEST 2017 - e ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:22:11 CEST 2017 - Invoked invitation with username=e|[b] +LOGGER (Client1): Mon Jul 10 21:22:11 CEST 2017 - Invoked invitation with username=e|[b] +LOGGER (Client1): Mon Jul 10 21:22:11 CEST 2017 - Invoked invitation with username=e|[b] +LOGGER (Client1): Mon Jul 10 21:22:33 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:22:33 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:22:35 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:22:35 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:22:35 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:23:35 CEST 2017 - Invoked invitation with username=c|[f] +LOGGER (Client1): Mon Jul 10 21:23:37 CEST 2017 - Invoked invitation with username=c|[f] +LOGGER (Client1): Mon Jul 10 21:23:37 CEST 2017 - Invoked invitation with username=c|[f] +LOGGER (Client1): Mon Jul 10 21:23:37 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:23:37 CEST 2017 - Invoked invitation with username=c|[f] +LOGGER (Client1): Mon Jul 10 21:23:55 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 21:23:58 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 21:23:58 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 21:23:58 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:26:19 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 21:26:21 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 21:26:28 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:26:28 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:26:28 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:26:32 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 21:26:40 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 21:26:54 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 21:26:54 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 21:26:54 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:26:54 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 21:26:54 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 21:27:00 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 21:27:00 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 21:27:00 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 21:27:00 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:27:00 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 21:27:10 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 21:27:10 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:27:10 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 21:27:10 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 21:27:10 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 21:27:16 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 21:27:16 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 21:27:16 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:27:16 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 21:27:16 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 21:27:24 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 21:27:24 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 21:27:24 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 21:27:24 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 21:27:24 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:27:29 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 21:27:29 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 21:27:29 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:27:29 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 21:27:29 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 21:27:37 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 21:27:37 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 21:27:37 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 21:27:37 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 21:27:37 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:27:43 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 21:27:43 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 21:27:43 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 21:27:43 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:27:43 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 21:27:53 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 21:27:53 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 21:27:53 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:27:53 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 21:27:53 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 21:27:56 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:27:56 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:27:56 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:27:56 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:27:56 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:29:09 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 21:29:09 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 21:29:09 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 21:29:09 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:29:09 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 21:29:26 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 21:29:26 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 21:29:26 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:29:26 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 21:29:26 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 21:29:29 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:29:29 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:29:29 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:29:29 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:29:29 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 21:29:52 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 21:29:52 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 21:29:52 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 21:29:52 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:29:52 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 21:29:57 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 21:29:57 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 21:29:57 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 21:29:57 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 21:29:57 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:31:09 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 21:31:09 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 21:31:09 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 21:31:09 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 21:31:09 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:31:14 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 21:31:22 CEST 2017 - Invoked invitation with username=ee|[a] +LOGGER (Client1): Mon Jul 10 21:31:22 CEST 2017 - Invoked invitation with username=ee|[a] +LOGGER (Client1): Mon Jul 10 21:31:22 CEST 2017 - ee ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:31:22 CEST 2017 - Invoked invitation with username=ee|[a] +LOGGER (Client1): Mon Jul 10 21:31:22 CEST 2017 - Invoked invitation with username=ee|[a] +LOGGER (Client1): Mon Jul 10 21:31:22 CEST 2017 - Invoked invitation with username=ee|[a] +LOGGER (Client1): Mon Jul 10 21:31:37 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 21:31:37 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:31:37 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 21:31:37 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 21:31:37 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 21:31:37 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 21:31:43 CEST 2017 - Invoked invitation with username=ee|[d] +LOGGER (Client1): Mon Jul 10 21:31:43 CEST 2017 - Invoked invitation with username=ee|[d] +LOGGER (Client1): Mon Jul 10 21:31:43 CEST 2017 - Invoked invitation with username=ee|[d] +LOGGER (Client1): Mon Jul 10 21:31:43 CEST 2017 - Invoked invitation with username=ee|[d] +LOGGER (Client1): Mon Jul 10 21:31:43 CEST 2017 - ee ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:31:43 CEST 2017 - Invoked invitation with username=ee|[d] +LOGGER (Client1): Mon Jul 10 21:32:00 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 21:32:00 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 21:32:00 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 21:32:00 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 21:32:00 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:32:00 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 21:32:16 CEST 2017 - Invoked invitation with username=c|[b, d, ee] +LOGGER (Client1): Mon Jul 10 21:32:16 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:32:16 CEST 2017 - Invoked invitation with username=c|[b, d, ee] +LOGGER (Client1): Mon Jul 10 21:32:16 CEST 2017 - Invoked invitation with username=c|[b, d, ee] +LOGGER (Client1): Mon Jul 10 21:32:16 CEST 2017 - Invoked invitation with username=c|[b, d, ee] +LOGGER (Client1): Mon Jul 10 21:32:16 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:32:16 CEST 2017 - Invoked invitation with username=c|[b, d, ee] +LOGGER (Client1): Mon Jul 10 21:32:16 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:32:27 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 21:32:46 CEST 2017 - Invoked invitation with username=a|[ff, b, c] +LOGGER (Client1): Mon Jul 10 21:32:46 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:32:46 CEST 2017 - Invoked invitation with username=a|[ff, b, c] +LOGGER (Client1): Mon Jul 10 21:32:46 CEST 2017 - Invoked invitation with username=a|[ff, b, c] +LOGGER (Client1): Mon Jul 10 21:32:46 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:32:46 CEST 2017 - Invoked invitation with username=a|[ff, b, c] +LOGGER (Client1): Mon Jul 10 21:32:46 CEST 2017 - Invoked invitation with username=a|[ff, b, c] +LOGGER (Client1): Mon Jul 10 21:32:46 CEST 2017 - Invoked invitation with username=a|[ff, b, c] +LOGGER (Client1): Mon Jul 10 21:32:46 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:32:53 CEST 2017 - Invoked invitation with username=d|[ee] +LOGGER (Client1): Mon Jul 10 21:32:53 CEST 2017 - Invoked invitation with username=d|[ee] +LOGGER (Client1): Mon Jul 10 21:32:53 CEST 2017 - Invoked invitation with username=d|[ee] +LOGGER (Client1): Mon Jul 10 21:32:53 CEST 2017 - Invoked invitation with username=d|[ee] +LOGGER (Client1): Mon Jul 10 21:32:53 CEST 2017 - Invoked invitation with username=d|[ee] +LOGGER (Client1): Mon Jul 10 21:32:53 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:32:53 CEST 2017 - Invoked invitation with username=d|[ee] +LOGGER (Client1): Mon Jul 10 21:33:13 CEST 2017 - Invoked invitation with username=ee|[a, ff] +LOGGER (Client1): Mon Jul 10 21:33:13 CEST 2017 - Invoked invitation with username=ee|[a, ff] +LOGGER (Client1): Mon Jul 10 21:33:13 CEST 2017 - ee ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:33:13 CEST 2017 - Invoked invitation with username=ee|[a, ff] +LOGGER (Client1): Mon Jul 10 21:33:13 CEST 2017 - Invoked invitation with username=ee|[a, ff] +LOGGER (Client1): Mon Jul 10 21:33:13 CEST 2017 - Invoked invitation with username=ee|[a, ff] +LOGGER (Client1): Mon Jul 10 21:33:13 CEST 2017 - Invoked invitation with username=ee|[a, ff] +LOGGER (Client1): Mon Jul 10 21:33:13 CEST 2017 - ee ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:33:19 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 21:33:19 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 21:33:19 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 21:33:19 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:33:19 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 21:33:19 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 21:33:19 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 21:33:36 CEST 2017 - Invoked invitation with username=ee|[d] +LOGGER (Client1): Mon Jul 10 21:33:36 CEST 2017 - Invoked invitation with username=ee|[d] +LOGGER (Client1): Mon Jul 10 21:33:36 CEST 2017 - Invoked invitation with username=ee|[d] +LOGGER (Client1): Mon Jul 10 21:33:36 CEST 2017 - Invoked invitation with username=ee|[d] +LOGGER (Client1): Mon Jul 10 21:33:36 CEST 2017 - ee ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:33:36 CEST 2017 - Invoked invitation with username=ee|[d] +LOGGER (Client1): Mon Jul 10 21:33:36 CEST 2017 - Invoked invitation with username=ee|[d] +LOGGER (Client1): Mon Jul 10 21:33:50 CEST 2017 - Invoked invitation with username=asd|[b] +LOGGER (Client1): Mon Jul 10 21:33:50 CEST 2017 - asd ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:33:50 CEST 2017 - Invoked invitation with username=asd|[b] +LOGGER (Client1): Mon Jul 10 21:33:50 CEST 2017 - Invoked invitation with username=asd|[b] +LOGGER (Client1): Mon Jul 10 21:33:50 CEST 2017 - Invoked invitation with username=asd|[b] +LOGGER (Client1): Mon Jul 10 21:33:50 CEST 2017 - Invoked invitation with username=asd|[b] +LOGGER (Client1): Mon Jul 10 21:33:50 CEST 2017 - Invoked invitation with username=asd|[b] +LOGGER (Client1): Mon Jul 10 21:33:55 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 21:33:55 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 21:33:55 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 21:33:55 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 21:33:55 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:33:55 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 21:33:55 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 21:34:05 CEST 2017 - Invoked invitation with username=ff|[asd] +LOGGER (Client1): Mon Jul 10 21:34:05 CEST 2017 - Invoked invitation with username=ff|[asd] +LOGGER (Client1): Mon Jul 10 21:34:05 CEST 2017 - ff ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:34:05 CEST 2017 - Invoked invitation with username=ff|[asd] +LOGGER (Client1): Mon Jul 10 21:34:05 CEST 2017 - Invoked invitation with username=ff|[asd] +LOGGER (Client1): Mon Jul 10 21:34:05 CEST 2017 - Invoked invitation with username=ff|[asd] +LOGGER (Client1): Mon Jul 10 21:34:05 CEST 2017 - Invoked invitation with username=ff|[asd] diff --git a/server.log b/server.log index 192565e..0f52d0f 100644 --- a/server.log +++ b/server.log @@ -8501,3 +8501,758 @@ LOGGER (Server): Sun Jul 09 16:44:43 CEST 2017 - Invoked login with username=c A LOGGER (Server): Sun Jul 09 16:44:43 CEST 2017 - Login successfull LOGGER (Server): Sun Jul 09 16:44:45 CEST 2017 - Invoked login with username=d AND password=d LOGGER (Server): Sun Jul 09 16:44:45 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:51:56 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 16:51:56 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 16:51:56 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 16:51:56 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 16:52:04 CEST 2017 - Invoked login with username=a AND password= +LOGGER (Server): Sun Jul 09 16:52:04 CEST 2017 - Login unsuccessfull +LOGGER (Server): Sun Jul 09 16:52:06 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 16:52:06 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:52:08 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 16:52:08 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:52:11 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jul 09 16:52:11 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:52:15 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Sun Jul 09 16:52:15 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:55:53 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 16:55:53 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 16:55:53 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 16:55:53 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 16:56:03 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 16:56:03 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:56:05 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 16:56:05 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:05:13 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 17:05:13 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 17:05:13 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 17:05:13 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 17:05:19 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 17:05:19 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:05:22 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 17:05:22 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:05:42 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jul 09 17:05:42 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:05:45 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Sun Jul 09 17:05:45 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:07:39 CEST 2017 - Invoked register with username=e AND password=e +LOGGER (Server): Sun Jul 09 17:07:39 CEST 2017 - Registration successfull +LOGGER (Server): Sun Jul 09 17:07:40 CEST 2017 - Invoked login with username= AND password= +LOGGER (Server): Sun Jul 09 17:07:40 CEST 2017 - Login unsuccessfull +LOGGER (Server): Sun Jul 09 17:07:41 CEST 2017 - Invoked login with username=e AND password=e +LOGGER (Server): Sun Jul 09 17:07:41 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:07:44 CEST 2017 - Invoked register with username=f AND password=f +LOGGER (Server): Sun Jul 09 17:07:44 CEST 2017 - Registration successfull +LOGGER (Server): Sun Jul 09 17:07:46 CEST 2017 - Invoked login with username=f AND password=f +LOGGER (Server): Sun Jul 09 17:07:46 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:08:32 CEST 2017 - Invoked register with username=da AND password=da +LOGGER (Server): Sun Jul 09 17:08:32 CEST 2017 - Registration successfull +LOGGER (Server): Sun Jul 09 17:08:37 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 17:08:37 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:08:44 CEST 2017 - Invoked login with username=da AND password=da +LOGGER (Server): Sun Jul 09 17:08:44 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:09:02 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 17:09:02 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 17:09:02 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 17:09:02 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 17:09:13 CEST 2017 - Invoked register with username=da AND password=da +LOGGER (Server): Sun Jul 09 17:09:13 CEST 2017 - Registration successfull +LOGGER (Server): Sun Jul 09 17:09:15 CEST 2017 - Invoked login with username=da AND password=da +LOGGER (Server): Sun Jul 09 17:09:15 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:09:16 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 17:09:16 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:09:34 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 17:09:34 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:10:47 CEST 2017 - Invoked register with username=e AND password=e +LOGGER (Server): Sun Jul 09 17:10:47 CEST 2017 - Registration successfull +LOGGER (Server): Sun Jul 09 17:10:49 CEST 2017 - Invoked login with username=e AND password=e +LOGGER (Server): Sun Jul 09 17:10:49 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:11:35 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Sun Jul 09 17:11:35 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:12:46 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 17:12:46 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 17:12:46 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 17:12:46 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 17:13:01 CEST 2017 - Invoked login with username=a AND password= +LOGGER (Server): Sun Jul 09 17:13:01 CEST 2017 - Login unsuccessfull +LOGGER (Server): Sun Jul 09 17:13:02 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 17:13:02 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:13:06 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 17:13:06 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:13:10 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jul 09 17:13:10 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:13:14 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Sun Jul 09 17:13:14 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:14:40 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 17:14:40 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 17:14:40 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 17:14:40 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 17:14:46 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 17:14:46 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:14:48 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 17:14:48 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:15:12 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jul 09 17:15:12 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:15:25 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Sun Jul 09 17:15:25 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:16:09 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 17:16:09 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 17:16:09 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 17:16:09 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 17:16:18 CEST 2017 - Invoked login with username=a AND password= +LOGGER (Server): Sun Jul 09 17:16:18 CEST 2017 - Login unsuccessfull +LOGGER (Server): Sun Jul 09 17:16:20 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 17:16:20 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:16:22 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 17:16:22 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:16:35 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jul 09 17:16:35 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:17:17 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 17:17:17 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 17:17:17 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 17:17:17 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 17:17:22 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 17:17:22 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:17:25 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 17:17:25 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:17:35 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jul 09 17:17:35 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:18:45 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Sun Jul 09 17:18:45 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:25:47 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 17:25:48 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 17:25:48 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 17:25:48 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 17:25:55 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 17:25:55 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:25:58 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 17:25:58 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:26:09 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jul 09 17:26:09 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:26:40 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Sun Jul 09 17:26:40 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:27:32 CEST 2017 - Invoked register with username=e AND password=e +LOGGER (Server): Sun Jul 09 17:27:32 CEST 2017 - Registration successfull +LOGGER (Server): Sun Jul 09 17:27:34 CEST 2017 - Invoked login with username=e AND password=e +LOGGER (Server): Sun Jul 09 17:27:34 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:31:31 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 17:31:31 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 17:31:31 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 17:31:31 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 17:31:42 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 17:31:42 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:31:47 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 17:31:47 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:31:51 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jul 09 17:31:51 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:31:55 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Sun Jul 09 17:31:55 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:32:00 CEST 2017 - Invoked login with username=e AND password=e +LOGGER (Server): Sun Jul 09 17:32:00 CEST 2017 - Login unsuccessfull +LOGGER (Server): Sun Jul 09 17:32:04 CEST 2017 - Invoked register with username=e AND password=e +LOGGER (Server): Sun Jul 09 17:32:04 CEST 2017 - Registration successfull +LOGGER (Server): Sun Jul 09 17:32:06 CEST 2017 - Invoked login with username=e AND password=e +LOGGER (Server): Sun Jul 09 17:32:06 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:32:13 CEST 2017 - Invoked register with username=f AND password=f +LOGGER (Server): Sun Jul 09 17:32:13 CEST 2017 - Registration successfull +LOGGER (Server): Sun Jul 09 17:32:15 CEST 2017 - Invoked login with username=f AND password=f +LOGGER (Server): Sun Jul 09 17:32:15 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:39:12 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 17:39:12 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 17:39:12 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 17:39:12 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 17:39:22 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 17:39:22 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:39:25 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 17:39:25 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:39:29 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jul 09 17:39:29 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:39:33 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Sun Jul 09 17:39:33 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:39:43 CEST 2017 - Invoked register with username=ff AND password= +LOGGER (Server): Sun Jul 09 17:39:45 CEST 2017 - Invoked register with username=f AND password=f +LOGGER (Server): Sun Jul 09 17:39:45 CEST 2017 - Registration successfull +LOGGER (Server): Sun Jul 09 17:39:47 CEST 2017 - Invoked login with username=f AND password=f +LOGGER (Server): Sun Jul 09 17:39:47 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:39:57 CEST 2017 - Invoked register with username=e AND password=e +LOGGER (Server): Sun Jul 09 17:39:57 CEST 2017 - Registration successfull +LOGGER (Server): Sun Jul 09 17:39:59 CEST 2017 - Invoked login with username=e AND password=e +LOGGER (Server): Sun Jul 09 17:39:59 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:45:33 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 17:45:33 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 17:45:33 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 17:45:33 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 17:45:37 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 17:45:37 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:45:40 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 17:45:40 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:45:54 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jul 09 17:45:54 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 17:46:40 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Sun Jul 09 17:46:40 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:10:00 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 10:10:00 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 10:10:00 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 10:10:00 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 10:10:05 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 10:10:05 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:10:08 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 10:10:08 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:10:09 CEST 2017 - Invoked logout with username=b AND token=3jls39jlbtcldoip7hujqd9gsk +LOGGER (Server): Mon Jul 10 10:10:09 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 10:10:09 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 10:10:23 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 10:10:23 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:11:22 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 10:11:23 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 10:11:23 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 10:11:23 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 10:11:29 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 10:11:29 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:11:33 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 10:11:33 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:11:36 CEST 2017 - Invoked logout with username=a AND token=uvf3td8aef49si0um7oj6ocdgo +LOGGER (Server): Mon Jul 10 10:11:36 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 10:11:36 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 10:11:41 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 10:11:41 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:12:15 CEST 2017 - Invoked logout with username=b AND token=s9o2rkbumpeq6e0kbmkmmq1ntt +LOGGER (Server): Mon Jul 10 10:12:15 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 10:12:15 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 10:12:21 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 10:12:21 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:12:41 CEST 2017 - Invoked logout with username=b AND token=aejj6upgvsfcpb0eb9d5fcef83 +LOGGER (Server): Mon Jul 10 10:12:41 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 10:12:41 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 10:17:42 CEST 2017 - Invoked logout with username=a AND token=ir34h2ldh7hisak7qlpmoorl07 +LOGGER (Server): Mon Jul 10 10:17:42 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 10:17:42 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 10:19:49 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 10:19:49 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 10:19:49 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 10:19:49 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 10:19:56 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 10:19:56 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:19:59 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 10:19:59 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:20:02 CEST 2017 - Invoked logout with username=b AND token=ig628ualrubti52d8hj668dq4p +LOGGER (Server): Mon Jul 10 10:20:02 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 10:20:02 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 10:20:13 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 10:20:13 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:20:33 CEST 2017 - Invoked logout with username=a AND token=n9uti8ib2ti5ov1ntedn5dmr1b +LOGGER (Server): Mon Jul 10 10:20:33 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 10:20:33 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 10:26:41 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 10:26:41 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 10:26:41 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 10:26:41 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 10:26:46 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 10:26:46 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:26:48 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 10:26:48 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:26:50 CEST 2017 - Invoked logout with username=a AND token=2td806fa0dusito9segde5h4eb +LOGGER (Server): Mon Jul 10 10:26:50 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 10:26:50 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 10:26:57 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 10:26:57 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:27:07 CEST 2017 - Invoked logout with username=b AND token=7dg5apd314dpg1l8khgs3bjjfe +LOGGER (Server): Mon Jul 10 10:27:07 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 10:27:07 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 10:27:10 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 10:27:10 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:27:21 CEST 2017 - Invoked logout with username=b AND token=qfm6rqdlsp86r0t0h0v3284qvs +LOGGER (Server): Mon Jul 10 10:27:21 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 10:27:24 CEST 2017 - Invoked login with username=b AND password=B +LOGGER (Server): Mon Jul 10 10:27:24 CEST 2017 - Login unsuccessfull +LOGGER (Server): Mon Jul 10 10:27:26 CEST 2017 - Invoked login with username=B AND password=B +LOGGER (Server): Mon Jul 10 10:27:26 CEST 2017 - Login unsuccessfull +LOGGER (Server): Mon Jul 10 10:27:29 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 10:27:29 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:28:00 CEST 2017 - Invoked logout with username=b AND token=bmoch9o059jjf4a5j7nuj9nll +LOGGER (Server): Mon Jul 10 10:28:00 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 10:28:00 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 10:28:01 CEST 2017 - Invoked logout with username=a AND token=hjegensqna5rcdej0he0be081h +LOGGER (Server): Mon Jul 10 10:28:01 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 10:28:01 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 10:28:13 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 10:28:13 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 10:28:13 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 10:28:13 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 10:28:18 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 10:28:18 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:28:20 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 10:28:20 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:28:23 CEST 2017 - Invoked logout with username=b AND token=cav8jdu7c2k34akodgok33hctg +LOGGER (Server): Mon Jul 10 10:28:23 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 10:28:23 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 10:28:25 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 10:28:26 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:30:01 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 10:30:01 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 10:30:01 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 10:30:01 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 10:30:08 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 10:30:08 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:30:11 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 10:30:11 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:30:12 CEST 2017 - Invoked logout with username=b AND token=42vtdkgfn8s4s40oho4n35lrub +LOGGER (Server): Mon Jul 10 10:30:12 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 10:30:12 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 10:30:15 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 10:30:15 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:30:48 CEST 2017 - Invoked logout with username=a AND token=otc68qd743k243hgrkcgujkmq +LOGGER (Server): Mon Jul 10 10:30:48 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 10:30:48 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 10:33:43 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 10:33:43 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 10:33:43 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 10:33:43 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 10:33:50 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 10:33:50 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:33:52 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 10:33:52 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:33:54 CEST 2017 - Invoked logout with username=b AND token=5eq16k58lbar6ucqmo23h3cf7j +LOGGER (Server): Mon Jul 10 10:33:54 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 10:33:54 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 10:33:57 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 10:33:57 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:45:04 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 10:45:04 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 10:45:04 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 10:45:04 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 10:45:11 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 10:45:11 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:45:15 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 10:45:15 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:45:16 CEST 2017 - Invoked logout with username=b AND token=7t3uuro5n7b1dagdif8ah1q8r2 +LOGGER (Server): Mon Jul 10 10:45:16 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 10:45:16 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 10:45:19 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 10:45:19 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:45:50 CEST 2017 - Invoked logout with username=a AND token=t73rgj4tvqvq49e8jao435050n +LOGGER (Server): Mon Jul 10 10:45:50 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 10:45:50 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 10:47:09 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 10:47:09 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 10:47:09 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 10:47:09 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 10:47:35 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 10:47:35 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:47:38 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 10:47:38 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:47:41 CEST 2017 - Invoked logout with username=b AND token=g07s5kbbn24ktocl3vq5ou1mqt +LOGGER (Server): Mon Jul 10 10:47:41 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 10:47:41 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 10:47:48 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 10:47:48 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:52:31 CEST 2017 - Invoked logout with username=b AND token=n2i8ksttrpaa8l8iefvpjqc3sm +LOGGER (Server): Mon Jul 10 10:52:31 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 10:52:31 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 10:53:58 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 10:53:58 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 10:53:58 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 10:53:58 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 10:54:03 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 10:54:03 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:54:06 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 10:54:06 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:54:07 CEST 2017 - Invoked logout with username=b AND token=4n2popjabp190o9v9kt9adt142 +LOGGER (Server): Mon Jul 10 10:54:07 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 10:54:07 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 10:54:10 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 10:54:10 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 10:56:19 CEST 2017 - Invoked logout with username=a AND token=hf5i68ldem27kd4i8snjnn0qpq +LOGGER (Server): Mon Jul 10 10:56:19 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 10:56:19 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 10:56:20 CEST 2017 - Invoked logout with username=b AND token=fspjdr4le7cdifmh91hlj10upv +LOGGER (Server): Mon Jul 10 10:56:20 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 10:56:20 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 11:02:59 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 11:03:00 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 11:03:00 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 11:03:00 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 11:04:17 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 11:04:17 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 11:04:17 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 11:04:17 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 11:05:06 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 11:05:06 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 11:05:06 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 11:05:06 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 11:05:51 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 11:05:51 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 11:05:51 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 11:05:51 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 11:06:12 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 11:06:12 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 11:06:14 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 11:06:14 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 11:06:16 CEST 2017 - Invoked logout with username=b AND token=6sutno229ss5en6m8eodc85n79 +LOGGER (Server): Mon Jul 10 11:06:16 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 11:06:16 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 11:06:27 CEST 2017 - Invoked logout with username=a AND token=g57lp77sna6e2s5jti42v86qgs +LOGGER (Server): Mon Jul 10 11:06:27 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 11:06:27 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 11:06:36 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 11:06:36 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 11:06:43 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 11:06:43 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 11:07:27 CEST 2017 - Invoked logout with username=b AND token=78ervtosopgtr4petpvpnv943s +LOGGER (Server): Mon Jul 10 11:07:27 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 11:07:27 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 11:07:28 CEST 2017 - Invoked logout with username=a AND token=9lj057d9ueubj5c925bbhn0afe +LOGGER (Server): Mon Jul 10 11:07:28 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 11:07:28 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 12:00:49 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 12:00:50 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 12:00:50 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 12:00:50 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 12:00:55 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 12:00:55 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 12:00:57 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 12:00:57 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 12:00:59 CEST 2017 - Invoked logout with username=b AND token=31gdkkg0djok1tjnvm9oaf99lb +LOGGER (Server): Mon Jul 10 12:00:59 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 12:00:59 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 12:01:03 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 12:01:03 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 12:01:36 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 12:01:36 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 12:02:38 CEST 2017 - Invoked logout with username=a AND token=3udh9lhj27cddcbambkdsii1a4 +LOGGER (Server): Mon Jul 10 12:02:38 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 12:02:38 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 12:02:39 CEST 2017 - Invoked logout with username=b AND token=gddpjge0kff3m4a1tocqbgfrrh +LOGGER (Server): Mon Jul 10 12:02:39 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 12:02:39 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 12:03:15 CEST 2017 - Invoked logout with username=c AND token=eqk32fglivm35sgfllv5ed3fd4 +LOGGER (Server): Mon Jul 10 12:03:15 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 12:03:15 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 12:12:05 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 12:12:05 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 12:12:05 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 12:12:05 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 12:12:11 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 12:12:11 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 12:12:14 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 12:12:14 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 12:12:22 CEST 2017 - Invoked logout with username=b AND token=45p9pi5odinpbgf0ahr1r0n0 +LOGGER (Server): Mon Jul 10 12:12:22 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 12:12:22 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 12:12:24 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 12:12:24 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 12:12:49 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 12:12:49 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 12:13:02 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 12:13:02 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 12:14:06 CEST 2017 - Invoked logout with username=a AND token=sm1947e4eupffdojv2rlr7sn7l +LOGGER (Server): Mon Jul 10 12:14:06 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 12:14:06 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 12:14:37 CEST 2017 - Invoked logout with username=d AND token=80gelafpdgq6e3u5jjjeloechh +LOGGER (Server): Mon Jul 10 12:14:37 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 12:14:37 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 12:14:38 CEST 2017 - Invoked logout with username=c AND token=5scl0sfc68kudaij3n0e6rvj6f +LOGGER (Server): Mon Jul 10 12:14:38 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 12:14:38 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 12:14:40 CEST 2017 - Invoked logout with username=b AND token=k0m5h0n7483b08t730u9vh9ffj +LOGGER (Server): Mon Jul 10 12:14:40 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 12:14:40 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 12:21:15 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 12:21:15 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 12:21:15 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 12:21:15 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 12:21:21 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 12:21:21 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 12:21:23 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 12:21:23 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 12:21:38 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 12:21:38 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 12:21:42 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 12:21:42 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 12:22:49 CEST 2017 - Invoked logout with username=a AND token=ptl8j9jtpv6ggu2tvvgpl53q59 +LOGGER (Server): Mon Jul 10 12:22:49 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 12:22:49 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 12:22:50 CEST 2017 - Invoked logout with username=b AND token=cgour531r6jcvk29n4hjqnhck2 +LOGGER (Server): Mon Jul 10 12:22:50 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 12:22:50 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 12:22:59 CEST 2017 - Invoked logout with username=d AND token=pnes55eb4qldlbq7kgmghogscv +LOGGER (Server): Mon Jul 10 12:22:59 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 12:22:59 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 12:23:00 CEST 2017 - Invoked logout with username=c AND token=hr8h36e4oop492l17044l9fh3u +LOGGER (Server): Mon Jul 10 12:23:00 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 12:23:00 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 12:23:55 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 12:23:55 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 12:23:55 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 12:23:55 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 12:24:42 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 12:24:42 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 12:24:43 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 12:24:43 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 12:24:45 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 12:24:45 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 12:24:48 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 12:24:48 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 12:25:00 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 12:25:00 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 12:25:11 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 12:25:11 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 12:32:16 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 12:32:16 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 12:32:16 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 12:32:16 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 12:32:22 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 12:32:22 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 12:32:26 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 12:32:26 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 12:32:42 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 12:32:42 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 12:32:52 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 12:32:52 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 12:37:02 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 12:37:02 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 12:37:02 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 12:37:02 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 12:37:07 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 12:37:07 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 12:37:12 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 12:37:12 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 12:37:33 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 12:37:33 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:15:34 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 18:15:34 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 18:15:34 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 18:15:34 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 18:15:45 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 18:15:45 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:15:46 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 18:15:46 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:18:33 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 18:18:34 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 18:18:34 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 18:18:34 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 18:18:39 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 18:18:40 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:18:43 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 18:18:43 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:19:24 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 18:19:24 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:19:36 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 18:19:36 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:23:08 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 18:23:08 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 18:23:08 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 18:23:08 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 18:23:14 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 18:23:14 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:23:20 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 18:23:20 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:25:56 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 18:25:56 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 18:25:56 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 18:25:56 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 18:26:03 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 18:26:03 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:26:06 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 18:26:06 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:26:17 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 18:26:17 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:26:46 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 18:26:46 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 18:26:46 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 18:26:46 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 18:26:50 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 18:26:50 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:26:54 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 18:26:54 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:27:04 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 18:27:04 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:27:38 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 18:27:38 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:31:09 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 18:31:09 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 18:31:09 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 18:31:09 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 18:31:13 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 18:31:13 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:31:17 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 18:31:17 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:31:26 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 18:31:26 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:31:43 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 18:31:43 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:33:32 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 18:33:32 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 18:33:32 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 18:33:32 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 18:33:38 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 18:33:38 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:33:41 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 18:33:41 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:33:56 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 18:33:56 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:34:11 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 18:34:11 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:36:40 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 18:36:40 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 18:36:40 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 18:36:40 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 18:36:45 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 18:36:46 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:36:50 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 18:36:50 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:37:12 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 18:37:12 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:37:23 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 18:37:23 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:39:50 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 18:39:50 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 18:39:50 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 18:39:50 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 18:39:54 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 18:39:54 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:40:00 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 18:40:00 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:40:13 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 18:40:14 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:40:17 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 18:40:17 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:45:17 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 18:45:17 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 18:45:17 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 18:45:17 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 18:45:26 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 18:45:26 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:45:31 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 18:45:31 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:45:36 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 18:45:36 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:45:47 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 18:45:47 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:47:18 CEST 2017 - Invoked logout with username=a AND token=olvu5e2394komd9fu4h7dsmb8q +LOGGER (Server): Mon Jul 10 18:47:18 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 18:47:18 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 18:47:19 CEST 2017 - Invoked logout with username=b AND token=57jhm8na08i0rgbr88lh8mu8a +LOGGER (Server): Mon Jul 10 18:47:19 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 18:47:19 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 18:47:20 CEST 2017 - Invoked logout with username=c AND token=c4n3dvd88j93qhc0nh0kn96ujg +LOGGER (Server): Mon Jul 10 18:47:20 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 18:47:20 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 18:47:22 CEST 2017 - Invoked logout with username=d AND token=mofd0g7jqa6d7al751qt9sbuoj +LOGGER (Server): Mon Jul 10 18:47:22 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 18:47:22 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 18:47:28 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 18:47:28 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 18:47:28 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 18:47:28 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 18:47:35 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 18:47:35 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 18:47:40 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 18:47:40 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 20:58:30 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 20:58:31 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 20:58:31 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 20:58:31 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 20:59:29 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 20:59:29 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 20:59:29 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 20:59:29 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 20:59:34 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 20:59:34 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 20:59:41 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 20:59:41 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:07:15 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 21:07:16 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 21:07:16 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 21:07:16 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 21:07:21 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 21:07:21 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:07:23 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 21:07:23 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:08:36 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 21:08:37 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 21:08:37 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 21:08:37 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 21:08:45 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 21:08:45 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:08:49 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 21:08:49 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:15:18 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 21:15:18 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 21:15:18 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 21:15:18 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 21:15:25 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 21:15:25 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:15:29 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 21:15:29 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:15:37 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 21:15:37 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:16:02 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 21:16:02 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:19:19 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 21:19:19 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 21:19:19 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 21:19:19 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 21:19:22 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 21:19:22 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:19:26 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 21:19:26 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:19:44 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 21:19:44 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:19:48 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 21:19:48 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:19:56 CEST 2017 - Invoked register with username=e AND password=e +LOGGER (Server): Mon Jul 10 21:19:56 CEST 2017 - Registration successfull +LOGGER (Server): Mon Jul 10 21:19:58 CEST 2017 - Invoked login with username=e AND password=e +LOGGER (Server): Mon Jul 10 21:19:58 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:20:07 CEST 2017 - Invoked register with username=f AND password=f +LOGGER (Server): Mon Jul 10 21:20:07 CEST 2017 - Registration successfull +LOGGER (Server): Mon Jul 10 21:20:10 CEST 2017 - Invoked login with username=f AND password=f +LOGGER (Server): Mon Jul 10 21:20:10 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:22:04 CEST 2017 - Invoked logout with username=e AND token=2bdgtd337d0jphh2rmbukcuh0b +LOGGER (Server): Mon Jul 10 21:22:04 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 21:22:04 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 21:22:08 CEST 2017 - Invoked login with username=e AND password=e +LOGGER (Server): Mon Jul 10 21:22:08 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:22:24 CEST 2017 - Invoked logout with username=e AND token=j5leljktslsqec84lbrr8dscun +LOGGER (Server): Mon Jul 10 21:22:24 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 21:22:24 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 21:22:28 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 21:22:28 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:22:28 CEST 2017 - Invoked logout with username=b AND token=e1b8mf789273d2uujdtjvblk3q +LOGGER (Server): Mon Jul 10 21:22:28 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 21:22:28 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 21:22:30 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 21:22:30 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:26:17 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 21:26:18 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 21:26:18 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 21:26:18 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 21:26:22 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 21:26:22 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:26:25 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 21:26:25 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:26:33 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 21:26:33 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:26:42 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 21:26:42 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:31:17 CEST 2017 - Invoked register with username=ee AND password=ee +LOGGER (Server): Mon Jul 10 21:31:17 CEST 2017 - Registration successfull +LOGGER (Server): Mon Jul 10 21:31:19 CEST 2017 - Invoked login with username=ee AND password=ee +LOGGER (Server): Mon Jul 10 21:31:19 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:32:30 CEST 2017 - Invoked register with username=ff AND password=ff +LOGGER (Server): Mon Jul 10 21:32:30 CEST 2017 - Registration successfull +LOGGER (Server): Mon Jul 10 21:32:32 CEST 2017 - Invoked login with username=ff AND password=ff +LOGGER (Server): Mon Jul 10 21:32:32 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:33:30 CEST 2017 - Invoked logout with username=d AND token=qc8prf73jb8rjrdepa5esffh22 +LOGGER (Server): Mon Jul 10 21:33:30 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 21:33:30 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 21:33:33 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 21:33:33 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 21:33:40 CEST 2017 - Invoked logout with username=a AND token=gs51bvblgj1f1dtgksjraraf2r +LOGGER (Server): Mon Jul 10 21:33:40 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 21:33:40 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 21:33:44 CEST 2017 - Invoked register with username=asd AND password=asd +LOGGER (Server): Mon Jul 10 21:33:44 CEST 2017 - Registration successfull +LOGGER (Server): Mon Jul 10 21:33:47 CEST 2017 - Invoked login with username=asd AND password=asd +LOGGER (Server): Mon Jul 10 21:33:47 CEST 2017 - Login successfull