From e5c3202bb2c41e2c1434d8368e66a8ea1b17e6bd Mon Sep 17 00:00:00 2001 From: Lorenzo Iovino Date: Fri, 7 Jul 2017 12:51:01 +0200 Subject: [PATCH 01/25] up --- .idea/workspace.xml | 593 ++++++++---------- .../client/tasks/WaitForPlayers.java | 43 +- .../server/components/GameServer.java | 46 +- .../server/components/ThreadProxy.java | 101 +-- .../com/texttwist/server/models/Match.java | 1 + .../com/texttwist/server/tasks/JoinMatch.java | 4 + .../texttwist/server/tasks/JoinTimeout.java | 19 +- .../server/tasks/SendMessageToAllPlayers.java | 8 +- client_1.log | 280 +++++++++ server.log | 248 ++++++++ 10 files changed, 927 insertions(+), 416 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index e1dfd78..3a3e16f 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -5,9 +5,14 @@ - + + + - + + + + @@ -30,11 +35,23 @@ - - + + - - + + + + + + + + + + + + + + @@ -43,95 +60,21 @@ - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - + + + + @@ -147,36 +90,36 @@ - READY T - READY TO - datagramSoc - cl - clo - clos - close - close( - INVIO - datagramSocke - datagramSocket - datagramsocket - datagramSo - close() - D - Dat - Data - Data... - ReceiveWords - R - ReceiveW - ReceiveWo - ReceiveWor - ReceiveWord - datagramP - channel - score - ComputeScore + this.match. + this.match.jo + this.match.joi + this.match.join + this.match.joinT + thismatch.joinT + match.joinT + Ma + Match start + 30 + 3 + 5,100 + 5,10 + 5,1 + 5,60 + 5,6 + 5, 60 + 5, 6 + 5, 1000 + 5, 100 + 5, 10 + 5, 1 + 5, + 5, 5 - buffer + t + timeout + il ma + JoinMatch + joinMatch @@ -190,7 +133,6 @@ @@ -295,7 +238,7 @@ - + @@ -600,9 +543,34 @@ + + + + + + + + + + + + + + - @@ -685,6 +653,7 @@ + @@ -1203,70 +1172,47 @@ + - - - - - - - - - - - - + - + + - + + + + - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - + @@ -1286,13 +1232,6 @@ - - - - - - - @@ -1307,16 +1246,6 @@ - - - - - - - - - - @@ -1371,13 +1300,6 @@ - - - - - - - @@ -1392,13 +1314,6 @@ - - - - - - - @@ -1429,29 +1344,6 @@ - - - - - - - - - - - - - - - - - - - - - - - @@ -1490,13 +1382,6 @@ - - - - - - - @@ -1512,25 +1397,6 @@ - - - - - - - - - - - - - - - - - - - @@ -1538,22 +1404,15 @@ - - - - - - - - - - - + + + + @@ -1563,8 +1422,8 @@ - - + + @@ -1593,24 +1452,6 @@ - - - - - - - - - - - - - - - - - - @@ -1621,17 +1462,17 @@ - - + + - + - + @@ -1641,62 +1482,170 @@ - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Client/src/com/texttwist/client/tasks/WaitForPlayers.java b/Client/src/com/texttwist/client/tasks/WaitForPlayers.java index fc66f9b..d8705c1 100644 --- a/Client/src/com/texttwist/client/tasks/WaitForPlayers.java +++ b/Client/src/com/texttwist/client/tasks/WaitForPlayers.java @@ -6,6 +6,7 @@ import com.texttwist.client.pages.Page; import com.texttwist.client.ui.TTDialog; import constants.Config; import models.Message; +import org.omg.PortableInterceptor.SYSTEM_EXCEPTION; import javax.swing.*; import java.io.IOException; @@ -23,7 +24,7 @@ public class WaitForPlayers extends SwingWorker,Default public SocketChannel socketChannel; public DefaultListModel words; public DefaultListModel letters; - + boolean joinTimeout = false; ByteBuffer buffer = ByteBuffer.allocate(1024); SwingWorker callback; @@ -48,12 +49,13 @@ public class WaitForPlayers extends SwingWorker,Default Message msg = Message.toMessage(line); if (msg.message.equals("JOIN_TIMEOUT")) { - socketChannel.close(); loading.dispose(); + joinTimeout = true; new TTDialog("alert", "TIMEOUT!", new Callable() { @Override public Object call() throws Exception { + //socketChannel.close(); return new MenuPage(Page.window); } @@ -61,6 +63,21 @@ public class WaitForPlayers extends SwingWorker,Default return new DefaultListModel(); } + if (msg.message.equals("MATCH_NOT_AVAILABLE")) { + loading.dispose(); + joinTimeout = true; + new TTDialog("alert", "THE GAME IS NOT MORE AVAILABLE!", + new Callable() { + @Override + public Object call() throws Exception { + socketChannel.close(); + return new MenuPage(Page.window); + + } + }, null); + return new DefaultListModel(); + } + if (msg.message.equals("GAME_STARTED")) { loading.dispose(); @@ -88,6 +105,8 @@ public class WaitForPlayers extends SwingWorker,Default } } } catch (IOException e) { + System.out.println("ECCEZIONE, GIOCO NON ESISTE. ELIMINALO"); + e.printStackTrace(); } return new DefaultListModel(); @@ -95,14 +114,18 @@ public class WaitForPlayers extends SwingWorker,Default @Override public void done(){ - System.out.println("Done wait for players"); - try { - System.out.println(letters); - App.game.setLetters(letters); - System.out.println("PAROLE IN INVIO"); - this.callback.execute(); - } catch (Exception e) { - e.printStackTrace(); + if(!joinTimeout) { + System.out.println("Done wait for players"); + try { + System.out.println(letters); + App.game.setLetters(letters); + System.out.println("PAROLE IN INVIO"); + this.callback.execute(); + } catch (Exception e) { + e.printStackTrace(); + } + } else { + System.out.println("TIMEOUT HAPPEN, GO TO MENU PAGE"); } } } diff --git a/Server/src/com/texttwist/server/components/GameServer.java b/Server/src/com/texttwist/server/components/GameServer.java index 3a7c526..4b18f54 100644 --- a/Server/src/com/texttwist/server/components/GameServer.java +++ b/Server/src/com/texttwist/server/components/GameServer.java @@ -1,31 +1,19 @@ package com.texttwist.server.components; -import com.sun.org.apache.xpath.internal.operations.Bool; import com.texttwist.server.models.Dictionary; import com.texttwist.server.models.Match; -import com.texttwist.server.tasks.SendInvitations; -import com.texttwist.server.tasks.WaitForPlayers; import constants.Config; -import jdk.nashorn.internal.parser.JSONParser; import models.Message; -import models.Session; -import org.json.simple.JsonObject; import utilities.Logger; -import javax.swing.*; -import java.io.InputStream; -import java.io.ObjectInputStream; import java.net.*; import java.io.IOException; import java.nio.ByteBuffer; import java.nio.channels.*; -import java.nio.file.Path; -import java.nio.file.Paths; import java.util.ArrayList; import java.util.Collections; import java.util.Iterator; import java.util.List; -import java.util.concurrent.ExecutionException; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.Future; @@ -35,15 +23,12 @@ import static java.nio.channels.SelectionKey.OP_READ; public class GameServer implements Runnable{ - protected int serverPort; - protected ServerSocketChannel serverSocketChannel = null; - protected ThreadProxy proxy; - ByteBuffer buffer = ByteBuffer.allocate(1024); - ByteBuffer buffer2 = ByteBuffer.allocate(1024); + private int serverPort; + private ThreadProxy proxy; - DatagramChannel datagramChannel; - protected Selector selector = null; - protected ExecutorService threadPool = Executors.newCachedThreadPool(); + private DatagramChannel datagramChannel; + private Selector selector = null; + private ExecutorService threadPool = Executors.newCachedThreadPool(); private String dictionaryPath = "./Server/resources/dictionary"; public static Dictionary dict; @@ -60,11 +45,11 @@ public class GameServer implements Runnable{ dict = new Dictionary(dictionaryPath); try { selector = Selector.open(); - serverSocketChannel = ServerSocketChannel.open(); + + ServerSocketChannel serverSocketChannel = ServerSocketChannel.open(); serverSocketChannel.configureBlocking(false); serverSocketChannel.socket().bind(new InetSocketAddress(serverPort)); serverSocketChannel.register(selector, OP_ACCEPT); - // datagramSocket = new DatagramSocket(Config.WordsReceiverServerPort); InetSocketAddress address = new InetSocketAddress(Config.WordsReceiverServerPort); datagramChannel = DatagramChannel.open(); DatagramSocket datagramSocket = datagramChannel.socket(); @@ -84,7 +69,7 @@ public class GameServer implements Runnable{ Iterator iter = selector.selectedKeys().iterator(); while (iter.hasNext()) { - buffer = ByteBuffer.allocate(1024); + ByteBuffer bufferMessages = ByteBuffer.allocate(1024); SocketChannel client = null; SelectionKey key = iter.next(); iter.remove(); @@ -99,16 +84,16 @@ public class GameServer implements Runnable{ case OP_READ: client = (SocketChannel) key.channel(); - //buffer.clear(); - if (client.read(buffer) != -1) { - buffer.flip(); - String line = new String(buffer.array(), buffer.position(), buffer.remaining()); + if (client.read(bufferMessages) != -1) { + bufferMessages.flip(); + String line = new String(bufferMessages.array(), bufferMessages.position(), bufferMessages.remaining()); if (line.startsWith("MESSAGE")) { SessionsManager.getInstance().printAll(); Message msg = Message.toMessage(line); - proxy = new ThreadProxy(msg, client, datagramChannel, buffer2); - Future identifyMessage = threadPool.submit(proxy); + ByteBuffer bufferWords = ByteBuffer.allocate(1024); + proxy = new ThreadProxy(msg, client, datagramChannel, bufferWords); + threadPool.submit(proxy); System.out.println(line); } @@ -136,9 +121,8 @@ public class GameServer implements Runnable{ } catch (IOException e1) { e1.printStackTrace(); } - e.printStackTrace(); - } } + } } } } \ No newline at end of file diff --git a/Server/src/com/texttwist/server/components/ThreadProxy.java b/Server/src/com/texttwist/server/components/ThreadProxy.java index adcadb5..135e79d 100644 --- a/Server/src/com/texttwist/server/components/ThreadProxy.java +++ b/Server/src/com/texttwist/server/components/ThreadProxy.java @@ -27,6 +27,7 @@ public class ThreadProxy implements Callable { private final SocketChannel socketChannel; private final DatagramChannel datagramChannel; private ByteBuffer buffer; + boolean matchNotAvailable =false; ThreadProxy(Message request, SocketChannel socketChannel, DatagramChannel datagramChannel, ByteBuffer buffer){ @@ -86,6 +87,7 @@ public class ThreadProxy implements Callable { new SendMessageToAllPlayers(match, new Message("JOIN_TIMEOUT", "", "", new DefaultListModel<>()), socketChannel)); Boolean sendMessageJoinTimeoutRes = sendMessageJoinTimeout.get(); if(!sendMessageJoinTimeoutRes){ + System.out.println("RIMOSSO"); activeMatches.remove(Match.findMatchIndex(activeMatches,match.matchCreator)); return sendMessageJoinTimeoutRes; } @@ -145,59 +147,76 @@ public class ThreadProxy implements Callable { System.out.print("START THE GAME!!!!"); final Match match = Match.findMatch(activeMatches, request.data.get(0)); + System.out.println(match.matchCreator); + if(match.joinTimeout == false) { + Future> generateLetters = threadPool.submit(new GenerateLetters()); + match.setLetters(generateLetters.get()); + match.letters.addElement(String.valueOf(match.multicastId)); - Future> generateLetters = threadPool.submit(new GenerateLetters()); - match.setLetters(generateLetters.get()); - match.letters.addElement(String.valueOf(match.multicastId)); + for (int i = 0; i < match.playersSocket.size(); i++) { + System.out.println("INVIO"); + SocketChannel socketClient = match.playersSocket.get(i).getValue(); + if (socketClient != null) { + buffer.clear(); + Message message = new Message("GAME_STARTED", "", "", match.letters); + match.startGame(); + byteMessage = message.toString().getBytes(); - for (int i =0; i< match.playersSocket.size(); i++) { - System.out.println("INVIO"); - SocketChannel socketClient = match.playersSocket.get(i).getValue(); - if(socketClient != null) { - buffer.clear(); - Message message = new Message("GAME_STARTED", "", "", match.letters); - match.startGame(); - byteMessage = message.toString().getBytes(); - - buffer = ByteBuffer.wrap(byteMessage); - try { - socketClient.write(buffer); - } catch (IOException e) { - e.printStackTrace(); + buffer = ByteBuffer.wrap(byteMessage); + try { + socketClient.write(buffer); + } catch (IOException e) { + System.out.println("GAME NOT EXIST"); + buffer = ByteBuffer.allocate(1024); + if (socketChannel != null) { + Message msg = new Message("MATCH_NOT_AVAILABLE", "", null, new DefaultListModel<>()); + buffer.clear(); + System.out.println("Il match richiesto non è più disponibile "); + byteMessage = msg.toString().getBytes(); + buffer = ByteBuffer.wrap(byteMessage); + socketChannel.write(buffer); + e.printStackTrace(); + matchNotAvailable = true; + } + } + //clientSocket.close(); } - //clientSocket.close(); } + if (!matchNotAvailable) { - } + //Start receive words: tempo masimo 5 minuti per completare l'invio delle lettere. + Future receiveWords = threadPool.submit(new ReceiveWords(match, datagramChannel, buffer)); + Boolean receiveWordsRes = receiveWords.get(); - //Start receive words: tempo masimo 5 minuti per completare l'invio delle lettere. - Future receiveWords = threadPool.submit(new ReceiveWords(match, datagramChannel, buffer)); - Boolean receiveWordsRes = receiveWords.get(); + if (receiveWordsRes) { + System.out.println("ZERO PUNTI a chi non ha ancora inviato le lettere, TIMER SCADUTO"); + } else { + System.out.println("TUTTI I GIOCATORI HANNO CONSEGNATO IN TEMPO"); + } - if(receiveWordsRes){ - System.out.println("ZERO PUNTI a chi non ha ancora inviato le lettere, TIMER SCADUTO"); - } else { - System.out.println("TUTTI I GIOCATORI HANNO CONSEGNATO IN TEMPO"); - } + match.setUndefinedScorePlayersToZero(); - match.setUndefinedScorePlayersToZero(); + while (true) { + Message msg = new Message("FINALSCORE", "SERVER", "", match.getMatchPlayersScoreAsStringList()); - while(true) { - Message msg = new Message("FINALSCORE", "SERVER", "", match.getMatchPlayersScoreAsStringList()); + MulticastSocket multicastSocket = new MulticastSocket(match.multicastId); + System.out.println(multicastSocket); + System.out.println(match.multicastId); + InetAddress ia = InetAddress.getByName(Config.ScoreMulticastServerURI); + DatagramPacket hi = new DatagramPacket(msg.toString().getBytes(), msg.toString().length(), ia, match.multicastId); + System.out.println(msg.toString()); + multicastSocket.send(hi); - MulticastSocket multicastSocket = new MulticastSocket(match.multicastId); - System.out.println(multicastSocket); - System.out.println(match.multicastId); - InetAddress ia = InetAddress.getByName(Config.ScoreMulticastServerURI); - DatagramPacket hi = new DatagramPacket(msg.toString().getBytes(), msg.toString().length(), ia, match.multicastId); - System.out.println(msg.toString()); - multicastSocket.send(hi); + System.out.println(Match.findMatchIndex(activeMatches, match.matchCreator)); - System.out.println(Match.findMatchIndex(activeMatches, match.matchCreator)); + activeMatches.remove(Match.findMatchIndex(activeMatches, match.matchCreator)); + //multicastSocket.disconnect(); + //multicastSocket.close(); + } - activeMatches.remove(Match.findMatchIndex(activeMatches, match.matchCreator)); - //multicastSocket.disconnect(); - //multicastSocket.close(); + } else { + return false; + } } //RISPONDI CON LA CLASSIFICA // break; diff --git a/Server/src/com/texttwist/server/models/Match.java b/Server/src/com/texttwist/server/models/Match.java index b41c283..4ea7116 100644 --- a/Server/src/com/texttwist/server/models/Match.java +++ b/Server/src/com/texttwist/server/models/Match.java @@ -21,6 +21,7 @@ public class Match { private boolean started = false; public final String matchCreator; public Integer multicastId; + public boolean joinTimeout =true; public DefaultListModel letters; public final List> playersScore = Collections.synchronizedList(new ArrayList<>()); diff --git a/Server/src/com/texttwist/server/tasks/JoinMatch.java b/Server/src/com/texttwist/server/tasks/JoinMatch.java index 3661a7f..652df56 100644 --- a/Server/src/com/texttwist/server/tasks/JoinMatch.java +++ b/Server/src/com/texttwist/server/tasks/JoinMatch.java @@ -1,10 +1,13 @@ 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; @@ -63,6 +66,7 @@ public class JoinMatch implements Callable { return false; } } + match.joinTimeout=false; return true; } } diff --git a/Server/src/com/texttwist/server/tasks/JoinTimeout.java b/Server/src/com/texttwist/server/tasks/JoinTimeout.java index 78e46f9..1f260eb 100644 --- a/Server/src/com/texttwist/server/tasks/JoinTimeout.java +++ b/Server/src/com/texttwist/server/tasks/JoinTimeout.java @@ -1,12 +1,5 @@ package com.texttwist.server.tasks; - -import com.texttwist.client.App; import com.texttwist.server.models.Match; -import models.Message; - -import javax.swing.*; -import java.nio.ByteBuffer; -import java.nio.channels.SocketChannel; import java.util.concurrent.*; /** @@ -18,16 +11,22 @@ public class JoinTimeout implements Callable { public JoinTimeout(Match match) { this.match = match; - System.out.println("Math started, countdown for join!"); + System.out.println("Match started, countdown for join!"); } @Override public Boolean call() throws Exception { try { - Thread.currentThread().sleep(7*60*1000); + Thread.currentThread().sleep(1*5*1000); + System.out.println("TIMEOUT - MANDA MESSAGGIO ERRORE A TUTTI GLI UTENTI DEL MATCH"); - return false; + if(match.joinTimeout) { + return false; + } + else { + return true; + } } catch (InterruptedException e) { e.printStackTrace(); } diff --git a/Server/src/com/texttwist/server/tasks/SendMessageToAllPlayers.java b/Server/src/com/texttwist/server/tasks/SendMessageToAllPlayers.java index c445f31..f693c9d 100644 --- a/Server/src/com/texttwist/server/tasks/SendMessageToAllPlayers.java +++ b/Server/src/com/texttwist/server/tasks/SendMessageToAllPlayers.java @@ -29,19 +29,23 @@ public class SendMessageToAllPlayers implements Callable { if(!match.isStarted()) { for (int i = 0; i < match.playersSocket.size(); i++) { + System.out.println(match.playersSocket.size()); socketChannel = match.playersSocket.get(i).getValue(); if (socketChannel != null) { buffer.clear(); + System.out.println("INVIO MESSAGGIO TIMEOUT A " + match.playersSocket.get(i).getKey()); byte[] byteMessage = message.toString().getBytes(); buffer = ByteBuffer.wrap(byteMessage); socketChannel.write(buffer); //clientSocket.close(); System.out.println("SEND TO ALL" + message.toString()); - return false; } } + return false; + + } else { + return true; } - return true; } } diff --git a/client_1.log b/client_1.log index c1661f5..dde74e7 100644 --- a/client_1.log +++ b/client_1.log @@ -4721,3 +4721,283 @@ LOGGER (Client1): Fri Jul 07 01:18:04 CEST 2017 - b ti ha sfidato! LOGGER (Client1): Fri Jul 07 01:18:30 CEST 2017 - Invoked invitation with username=b|[a] LOGGER (Client1): Fri Jul 07 01:18:30 CEST 2017 - Invoked invitation with username=b|[a] LOGGER (Client1): Fri Jul 07 01:18:30 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 10:55:00 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 10:55:02 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 10:55:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 10:55:08 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 10:55:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 10:55:28 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 10:55:28 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 10:55:28 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 10:55:39 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 10:55:40 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 10:56:05 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 10:56:05 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 10:56:05 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 10:56:05 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 10:56:05 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 10:56:08 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Fri Jul 07 10:56:08 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Fri Jul 07 10:56:08 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Fri Jul 07 10:56:08 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 10:56:08 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Fri Jul 07 10:56:16 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 10:56:18 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 10:57:05 CEST 2017 - Invoked invitation with username=e|[c, d] +LOGGER (Client1): Fri Jul 07 10:57:05 CEST 2017 - Invoked invitation with username=e|[c, d] +LOGGER (Client1): Fri Jul 07 10:57:05 CEST 2017 - Invoked invitation with username=e|[c, d] +LOGGER (Client1): Fri Jul 07 10:57:05 CEST 2017 - e ti ha sfidato! +LOGGER (Client1): Fri Jul 07 10:57:05 CEST 2017 - Invoked invitation with username=e|[c, d] +LOGGER (Client1): Fri Jul 07 10:57:05 CEST 2017 - e ti ha sfidato! +LOGGER (Client1): Fri Jul 07 10:57:05 CEST 2017 - Invoked invitation with username=e|[c, d] +LOGGER (Client1): Fri Jul 07 10:57:05 CEST 2017 - Invoked invitation with username=e|[c, d] +LOGGER (Client1): Fri Jul 07 10:57:06 CEST 2017 - Invoked invitation with username=f|[a, b] +LOGGER (Client1): Fri Jul 07 10:57:06 CEST 2017 - f ti ha sfidato! +LOGGER (Client1): Fri Jul 07 10:57:06 CEST 2017 - Invoked invitation with username=f|[a, b] +LOGGER (Client1): Fri Jul 07 10:57:06 CEST 2017 - f ti ha sfidato! +LOGGER (Client1): Fri Jul 07 10:57:06 CEST 2017 - Invoked invitation with username=f|[a, b] +LOGGER (Client1): Fri Jul 07 10:57:06 CEST 2017 - Invoked invitation with username=f|[a, b] +LOGGER (Client1): Fri Jul 07 10:57:06 CEST 2017 - Invoked invitation with username=f|[a, b] +LOGGER (Client1): Fri Jul 07 10:57:06 CEST 2017 - Invoked invitation with username=f|[a, b] +LOGGER (Client1): Fri Jul 07 10:57:32 CEST 2017 - Invoked invitation with username=f|[c] +LOGGER (Client1): Fri Jul 07 10:57:32 CEST 2017 - Invoked invitation with username=f|[c] +LOGGER (Client1): Fri Jul 07 10:57:32 CEST 2017 - Invoked invitation with username=f|[c] +LOGGER (Client1): Fri Jul 07 10:57:32 CEST 2017 - Invoked invitation with username=f|[c] +LOGGER (Client1): Fri Jul 07 10:57:32 CEST 2017 - f ti ha sfidato! +LOGGER (Client1): Fri Jul 07 10:57:32 CEST 2017 - Invoked invitation with username=f|[c] +LOGGER (Client1): Fri Jul 07 10:57:32 CEST 2017 - Invoked invitation with username=f|[c] +LOGGER (Client1): Fri Jul 07 10:57:37 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 10:57:37 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 10:57:37 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 10:57:37 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 10:57:37 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 10:57:37 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 10:57:37 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 10:57:40 CEST 2017 - Invoked invitation with username=d|[e] +LOGGER (Client1): Fri Jul 07 10:57:40 CEST 2017 - Invoked invitation with username=d|[e] +LOGGER (Client1): Fri Jul 07 10:57:40 CEST 2017 - Invoked invitation with username=d|[e] +LOGGER (Client1): Fri Jul 07 10:57:40 CEST 2017 - Invoked invitation with username=d|[e] +LOGGER (Client1): Fri Jul 07 10:57:40 CEST 2017 - Invoked invitation with username=d|[e] +LOGGER (Client1): Fri Jul 07 10:57:40 CEST 2017 - Invoked invitation with username=d|[e] +LOGGER (Client1): Fri Jul 07 10:57:40 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Fri Jul 07 10:58:08 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 10:58:08 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 10:58:08 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 10:58:08 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 10:58:08 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 10:58:08 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 10:58:08 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 10:58:48 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 10:58:49 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 10:59:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 10:59:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 10:59:02 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 10:59:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 10:59:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 10:59:08 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 10:59:28 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 10:59:28 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 10:59:28 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:00:13 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:00:15 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:00:21 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:00:21 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:00:21 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:00:40 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 11:00:40 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:00:40 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 11:01:01 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 11:01:01 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:01:01 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 11:01:19 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 11:01:19 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:01:19 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 11:01:41 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 11:01:41 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:01:41 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 11:01:58 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:02:02 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:02:14 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 11:02:14 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:02:14 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 11:04:24 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:04:30 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:04:32 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:04:39 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:04:39 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:04:39 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:04:59 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:05:00 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:05:11 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:05:11 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:05:11 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:16:03 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:16:06 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:16:16 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 11:16:16 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:16:16 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 11:16:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:16:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:16:44 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:17:07 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 11:17:07 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:17:07 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 11:17:34 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:17:34 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:17:34 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:18:51 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:18:53 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:19:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:19:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:19:02 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:19:21 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 11:19:21 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:19:21 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 11:19:42 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:19:42 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:19:42 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:20:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:20:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:20:02 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:20:28 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 11:20:28 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:20:28 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 11:21:57 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 11:21:57 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:21:57 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 11:24:05 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:24:07 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:24:14 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:24:14 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:24:14 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:30:10 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:30:12 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:30:19 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:30:19 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:30:19 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:30:52 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 11:30:52 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:30:53 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 11:35:54 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:35:55 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:36:01 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:36:01 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:36:01 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:38:59 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:39:01 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:39:06 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:39:06 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:39:06 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:42:01 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:42:03 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:42:04 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:42:17 CEST 2017 - Invoked invitation with username=c|[b, a] +LOGGER (Client1): Fri Jul 07 11:42:17 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:42:17 CEST 2017 - Invoked invitation with username=c|[b, a] +LOGGER (Client1): Fri Jul 07 11:42:17 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:42:17 CEST 2017 - Invoked invitation with username=c|[b, a] +LOGGER (Client1): Fri Jul 07 11:49:20 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:49:22 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:49:23 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:49:38 CEST 2017 - Invoked invitation with username=c|[b, a] +LOGGER (Client1): Fri Jul 07 11:49:38 CEST 2017 - Invoked invitation with username=c|[b, a] +LOGGER (Client1): Fri Jul 07 11:49:38 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:49:38 CEST 2017 - Invoked invitation with username=c|[b, a] +LOGGER (Client1): Fri Jul 07 11:49:38 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:57:34 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:57:35 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 11:57:49 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:57:49 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:57:49 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 11:58:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:58:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 11:58:10 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 12:00:53 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:00:55 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:01:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:01:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:01:02 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 12:01:25 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:01:25 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:01:25 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 12:05:23 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:05:32 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:05:33 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:05:40 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:05:40 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:05:40 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 12:11:49 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:11:50 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:12:00 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:12:00 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:12:00 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 12:13:23 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:13:25 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:13:34 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:13:34 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:13:34 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 12:20:14 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:20:15 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:20:23 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:20:23 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:20:23 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 12:25:07 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:25:09 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:25:19 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:25:19 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:25:19 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 12:27:59 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:28:00 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:28:07 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:28:07 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:28:07 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 12:29:52 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:29:57 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:30:03 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:30:03 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 12:30:03 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:33:35 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:33:40 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:33:45 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:33:45 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 12:33:45 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:37:51 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:37:52 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:38:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:38:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:38:02 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 12:41:03 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:41:05 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:41:13 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:41:13 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:41:13 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 12:43:19 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:43:21 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:43:29 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:43:29 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:43:30 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 12:43:44 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 12:43:44 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 12:43:44 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 12:43:58 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:43:58 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:43:58 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 12:44:20 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 12:44:20 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 12:44:20 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 12:45:10 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:45:11 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:45:20 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:45:20 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:45:20 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 12:45:39 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:45:39 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:45:39 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 12:45:58 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 12:45:58 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 12:45:58 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 12:49:55 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:49:56 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 12:50:11 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:50:11 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 12:50:11 CEST 2017 - b ti ha sfidato! diff --git a/server.log b/server.log index bcef349..236675a 100644 --- a/server.log +++ b/server.log @@ -6857,3 +6857,251 @@ LOGGER (Server): Fri Jul 07 01:14:15 CEST 2017 - Invoked login with username=a A LOGGER (Server): Fri Jul 07 01:14:15 CEST 2017 - Login successfull LOGGER (Server): Fri Jul 07 01:14:20 CEST 2017 - Invoked login with username=b AND password=b LOGGER (Server): Fri Jul 07 01:14:20 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 10:54:58 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 10:54:58 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 10:54:58 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 10:54:58 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 10:55:05 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 10:55:05 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 10:55:06 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 10:55:06 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 10:55:52 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 10:55:52 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 10:55:58 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Fri Jul 07 10:55:58 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 10:56:48 CEST 2017 - Invoked register with username=e AND password=e +LOGGER (Server): Fri Jul 07 10:56:48 CEST 2017 - Registration successfull +LOGGER (Server): Fri Jul 07 10:56:50 CEST 2017 - Invoked login with username=e AND password=e +LOGGER (Server): Fri Jul 07 10:56:50 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 10:56:55 CEST 2017 - Invoked register with username=f AND password=f +LOGGER (Server): Fri Jul 07 10:56:55 CEST 2017 - Registration successfull +LOGGER (Server): Fri Jul 07 10:56:57 CEST 2017 - Invoked login with username=f AND password=f +LOGGER (Server): Fri Jul 07 10:56:57 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 10:58:50 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 10:58:50 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 10:58:54 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 10:58:54 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 10:59:56 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 10:59:57 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 10:59:57 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 10:59:57 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 11:00:12 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 11:00:12 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 11:00:12 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 11:00:12 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 11:00:16 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 11:00:16 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:00:18 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 11:00:18 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:02:06 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 11:02:06 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:02:07 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Fri Jul 07 11:02:07 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:04:29 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 11:04:29 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 11:04:29 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 11:04:29 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 11:04:33 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 11:04:33 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:04:36 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 11:04:36 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:04:57 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 11:04:57 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 11:04:57 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 11:04:57 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 11:05:05 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 11:05:05 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:05:06 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 11:05:06 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:16:02 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 11:16:02 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 11:16:02 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 11:16:02 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 11:16:07 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 11:16:07 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:16:14 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 11:16:14 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:18:49 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 11:18:49 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 11:18:49 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 11:18:49 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 11:18:54 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 11:18:54 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:18:57 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 11:18:57 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:24:04 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 11:24:04 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 11:24:04 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 11:24:04 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 11:24:09 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 11:24:09 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:24:11 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 11:24:11 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:30:08 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 11:30:08 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 11:30:08 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 11:30:08 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 11:30:13 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 11:30:13 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:30:17 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 11:30:17 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:35:50 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 11:35:50 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 11:35:50 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 11:35:50 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 11:35:56 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 11:35:56 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:35:59 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 11:35:59 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:38:57 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 11:38:58 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 11:38:58 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 11:38:58 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 11:39:02 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 11:39:02 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:39:05 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 11:39:05 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:41:59 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 11:41:59 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 11:41:59 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 11:41:59 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 11:42:10 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 11:42:10 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:42:12 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 11:42:12 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:42:13 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 11:42:13 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:49:18 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 11:49:18 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 11:49:18 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 11:49:18 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 11:49:24 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 11:49:24 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:49:29 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 11:49:29 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:49:33 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 11:49:33 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:57:32 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 11:57:32 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 11:57:32 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 11:57:32 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 11:57:43 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 11:57:43 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 11:57:46 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 11:57:46 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:00:52 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 12:00:52 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 12:00:52 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 12:00:52 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 12:00:56 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 12:00:56 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:01:00 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 12:01:00 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:03:05 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 12:03:05 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 12:03:05 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 12:03:05 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 12:05:30 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 12:05:30 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 12:05:30 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 12:05:30 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 12:05:34 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 12:05:34 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:05:38 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 12:05:38 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:11:47 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 12:11:47 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 12:11:47 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 12:11:47 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 12:11:54 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 12:11:54 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:11:58 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 12:11:58 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:13:20 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 12:13:21 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 12:13:21 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 12:13:21 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 12:13:27 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 12:13:27 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:13:31 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 12:13:31 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:20:09 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 12:20:09 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 12:20:09 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 12:20:09 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 12:20:18 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 12:20:18 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:20:21 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 12:20:21 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:25:03 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 12:25:03 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 12:25:03 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 12:25:03 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 12:25:10 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 12:25:10 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:25:16 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 12:25:16 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:27:57 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 12:27:58 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 12:27:58 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 12:27:58 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 12:28:02 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 12:28:02 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:28:05 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 12:28:05 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:29:49 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 12:29:49 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 12:29:49 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 12:29:49 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 12:29:55 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 12:29:55 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:29:59 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 12:29:59 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:33:33 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 12:33:33 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 12:33:33 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 12:33:33 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 12:33:38 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 12:33:38 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:33:41 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 12:33:41 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:37:49 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 12:37:49 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 12:37:50 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 12:37:50 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 12:37:54 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 12:37:54 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:37:59 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 12:37:59 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:40:58 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 12:40:59 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 12:40:59 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 12:40:59 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 12:41:06 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 12:41:06 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:41:11 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 12:41:11 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:43:16 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 12:43:16 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 12:43:16 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 12:43:16 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 12:43:22 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 12:43:22 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:43:26 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 12:43:26 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:45:08 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 12:45:08 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 12:45:08 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 12:45:08 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 12:45:13 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 12:45:13 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:45:18 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 12:45:18 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:49:49 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 12:49:49 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 12:49:49 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 12:49:49 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 12:50:03 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 12:50:03 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 12:50:07 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 12:50:07 CEST 2017 - Login successfull From 3a528f307b14577d31f9ba707889f30e9638b496 Mon Sep 17 00:00:00 2001 From: Lorenzo Iovino Date: Fri, 7 Jul 2017 15:50:00 +0200 Subject: [PATCH 02/25] up --- .idea/workspace.xml | 843 ++++++++++-------- .../client/controllers/HomeController.java | 1 - .../src/com/texttwist/client/models/Game.java | 1 - .../client/tasks/FetchHighscore.java | 4 - .../texttwist/client/tasks/InvitePlayers.java | 1 - .../com/texttwist/client/tasks/SendWords.java | 2 - .../com/texttwist/client/tasks/StartGame.java | 2 - .../client/tasks/WaitForPlayers.java | 10 +- .../texttwist/client/tasks/WaitForScore.java | 14 - Commons/src/utilities/Logger.java | 1 - .../server/components/GameServer.java | 1 - .../server/components/NotificationServer.java | 18 +- .../server/components/ThreadProxy.java | 41 +- .../com/texttwist/server/models/Match.java | 2 - .../server/tasks/CheckOnlineUsers.java | 1 - .../server/tasks/ComputeHighscores.java | 1 - .../com/texttwist/server/tasks/JoinMatch.java | 3 +- .../texttwist/server/tasks/JoinTimeout.java | 2 - .../texttwist/server/tasks/MatchTimeout.java | 4 - .../texttwist/server/tasks/ReceiveWords.java | 7 - .../server/tasks/SendInvitations.java | 1 - .../server/tasks/SendMessageToAllPlayers.java | 4 - .../server/tasks/WaitForPlayers.java | 2 - client_1.log | 408 +++++++++ server.log | 237 +++++ 25 files changed, 1138 insertions(+), 473 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 3a3e16f..0c57da6 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -6,13 +6,28 @@ + + + + + + + + + + + + + + + @@ -35,11 +50,11 @@ - + - - + + @@ -47,31 +62,53 @@ - - + + - - + + - - + + - - + + - - + + - - + + + + + + + + + + + + + + + + + + + + + + + + @@ -79,6 +116,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -90,36 +167,36 @@ - this.match. - this.match.jo - this.match.joi - this.match.join - this.match.joinT - thismatch.joinT - match.joinT - Ma - Match start - 30 - 3 - 5,100 - 5,10 - 5,1 - 5,60 - 5,6 - 5, 60 - 5, 6 - 5, 1000 - 5, 100 - 5, 10 - 5, 1 - 5, - 5, - 5 - t - timeout - il ma - JoinMatch - joinMatch + System.out.pr + System\.out\.println\(elem\.account\.userName \+ \" \| \" \+ elem\.token\)\;\n + Systemout + Systemou + Systemo + Syst + Sys + G + System\.out\.println\(\"SEtting score of \" \+ m\.playersScore\.get\(i\)\.getKey\(\) \+ \" to \" \+ score\)\;\n + Syste + System. + System\.out\.println\(\"Eccezione\" \+ e\)\;\n + S + System + System.o + System.out + n + new client + new client r + new client re + new client regi + l + login + TI + TIMEOUT + ecc + ecce + eccez + eccezio + eccezion @@ -133,13 +210,9 @@ @@ -238,6 +315,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -571,89 +731,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1172,12 +1249,13 @@ - + + - @@ -1193,7 +1271,7 @@ - + @@ -1232,55 +1310,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1293,20 +1322,6 @@ - - - - - - - - - - - - - - @@ -1329,14 +1344,6 @@ - - - - - - - - @@ -1351,29 +1358,6 @@ - - - - - - - - - - - - - - - - - - - - - - - @@ -1389,21 +1373,6 @@ - - - - - - - - - - - - - - - @@ -1417,17 +1386,6 @@ - - - - - - - - - - - @@ -1436,14 +1394,6 @@ - - - - - - - - @@ -1470,53 +1420,10 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1528,14 +1435,6 @@ - - - - - - - - @@ -1544,14 +1443,6 @@ - - - - - - - - @@ -1568,84 +1459,278 @@ - + - - - - - - - - - - - - + + - + - - + + - + - - + + + + + + + + + + + + + + + + + + - - + + - + - - - - - - - - - - - - + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Client/src/com/texttwist/client/controllers/HomeController.java b/Client/src/com/texttwist/client/controllers/HomeController.java index cb9a08d..50cb463 100644 --- a/Client/src/com/texttwist/client/controllers/HomeController.java +++ b/Client/src/com/texttwist/client/controllers/HomeController.java @@ -15,7 +15,6 @@ public class HomeController { public Response login(String userName, String password) throws RemoteException, NotBoundException, MalformedURLException { Response res = App.authService.login(userName,password); - System.out.println(res.data); if (res.code == 200){ App.session = (new Session(new User(userName,password,0), res.data.get("token").toString())); } diff --git a/Client/src/com/texttwist/client/models/Game.java b/Client/src/com/texttwist/client/models/Game.java index cedb119..92db12a 100644 --- a/Client/src/com/texttwist/client/models/Game.java +++ b/Client/src/com/texttwist/client/models/Game.java @@ -91,7 +91,6 @@ public class Game { //Invia tcp req a server per dirgli che sto joinando DefaultListModel matchNames = new DefaultListModel(); matchNames.addElement(matchName); - System.out.println("STO JOINANDO"); Message message = new Message("JOIN_GAME", App.session.account.userName, App.session.token, matchNames); byte[] byteMessage = new String(message.toString()).getBytes(); diff --git a/Client/src/com/texttwist/client/tasks/FetchHighscore.java b/Client/src/com/texttwist/client/tasks/FetchHighscore.java index 1e477ca..a40711a 100644 --- a/Client/src/com/texttwist/client/tasks/FetchHighscore.java +++ b/Client/src/com/texttwist/client/tasks/FetchHighscore.java @@ -29,7 +29,6 @@ public class FetchHighscore extends SwingWorker { public Void doInBackground() { Message message = new Message("FETCH_HIGHSCORES", App.session.account.userName, App.session.token, new DefaultListModel<>()); buffer = ByteBuffer.allocate(1024); - System.out.println("SENDDDDD MESSAGE"); byte[] byteMessage = message.toString().getBytes(); buffer = ByteBuffer.wrap(byteMessage); try { @@ -49,7 +48,6 @@ public class FetchHighscore extends SwingWorker { if (line.startsWith("MESSAGE")) { Message msg = Message.toMessage(line); - System.out.println(line); if (msg.message.equals("HIGHSCORES") && msg.data != null) { for(int i = 0; i< msg.data.size()-1; i++){ @@ -69,10 +67,8 @@ public class FetchHighscore extends SwingWorker { } public void done(){ - System.out.println("Done Highscores"); App.game.globalRanks = globalRanks; this.highscoresPage.showHighscoreList(); - System.out.println("DODODO"); } } diff --git a/Client/src/com/texttwist/client/tasks/InvitePlayers.java b/Client/src/com/texttwist/client/tasks/InvitePlayers.java index b1d12c4..e59adc5 100644 --- a/Client/src/com/texttwist/client/tasks/InvitePlayers.java +++ b/Client/src/com/texttwist/client/tasks/InvitePlayers.java @@ -82,7 +82,6 @@ public class InvitePlayers extends SwingWorker { @Override public void done() { - System.out.println("Done invite players"); } } diff --git a/Client/src/com/texttwist/client/tasks/SendWords.java b/Client/src/com/texttwist/client/tasks/SendWords.java index d3c35d9..2d16c62 100644 --- a/Client/src/com/texttwist/client/tasks/SendWords.java +++ b/Client/src/com/texttwist/client/tasks/SendWords.java @@ -52,7 +52,6 @@ public class SendWords extends SwingWorker { Message msg = new Message("WORDS", App.session.account.userName, "", words); String sentence = msg.toString(); sendData = sentence.getBytes(); - System.out.println("SENDIJIIDIIDIDIDIDDIDIDIDIDI"); DatagramPacket sendPacket = new DatagramPacket(sendData, sendData.length, IPAddress, Config.WordsReceiverServerPort); clientSocket.send(sendPacket); clientSocket.close();*/ @@ -70,7 +69,6 @@ public class SendWords extends SwingWorker { @Override public void done(){ - System.out.println("Done send SCOREEEEEE"); try { this.callback.execute(); } catch (Exception e) { diff --git a/Client/src/com/texttwist/client/tasks/StartGame.java b/Client/src/com/texttwist/client/tasks/StartGame.java index 07d355b..646d625 100644 --- a/Client/src/com/texttwist/client/tasks/StartGame.java +++ b/Client/src/com/texttwist/client/tasks/StartGame.java @@ -30,7 +30,6 @@ public class StartGame extends SwingWorker { @Override public Object call() throws Exception { gamePage.showLetters(); - System.out.println(letters); gamePage.timer.start(); return null; } @@ -40,6 +39,5 @@ public class StartGame extends SwingWorker { @Override public void done(){ - System.out.println("Done start gamePage"); } } diff --git a/Client/src/com/texttwist/client/tasks/WaitForPlayers.java b/Client/src/com/texttwist/client/tasks/WaitForPlayers.java index d8705c1..3aedbec 100644 --- a/Client/src/com/texttwist/client/tasks/WaitForPlayers.java +++ b/Client/src/com/texttwist/client/tasks/WaitForPlayers.java @@ -70,7 +70,7 @@ public class WaitForPlayers extends SwingWorker,Default new Callable() { @Override public Object call() throws Exception { - socketChannel.close(); + //socketChannel.close(); return new MenuPage(Page.window); } @@ -85,13 +85,10 @@ public class WaitForPlayers extends SwingWorker,Default if(msg.data !=null ) { data= msg.data; - System.out.println("HERE"); Integer multicastId = Integer.valueOf(data.remove(data.size()-2)); - System.out.println(multicastId); App.game.setMulticastId(multicastId); App.game.multicastSocket = new MulticastSocket(App.game.multicastId); - System.out.println(App.game.multicastSocket); InetAddress ia = InetAddress.getByName(Config.ScoreMulticastServerURI); App.game.multicastSocket.joinGroup(ia); letters = msg.data; @@ -105,7 +102,6 @@ public class WaitForPlayers extends SwingWorker,Default } } } catch (IOException e) { - System.out.println("ECCEZIONE, GIOCO NON ESISTE. ELIMINALO"); e.printStackTrace(); } @@ -115,17 +111,13 @@ public class WaitForPlayers extends SwingWorker,Default @Override public void done(){ if(!joinTimeout) { - System.out.println("Done wait for players"); try { - System.out.println(letters); App.game.setLetters(letters); - System.out.println("PAROLE IN INVIO"); this.callback.execute(); } catch (Exception e) { e.printStackTrace(); } } else { - System.out.println("TIMEOUT HAPPEN, GO TO MENU PAGE"); } } } diff --git a/Client/src/com/texttwist/client/tasks/WaitForScore.java b/Client/src/com/texttwist/client/tasks/WaitForScore.java index e86b64e..d44d1c2 100644 --- a/Client/src/com/texttwist/client/tasks/WaitForScore.java +++ b/Client/src/com/texttwist/client/tasks/WaitForScore.java @@ -34,14 +34,10 @@ public class WaitForScore extends SwingWorker { Message msg; while(true) { byte[] buf = new byte[1024]; - System.out.println("SONO QUIIIII"); DatagramPacket recv = new DatagramPacket(buf, buf.length); - System.out.println("ANCORA QUII"); App.game.multicastSocket.receive(recv); String s = new String(recv.getData()); - System.out.println("HSHSHSHS"); - System.out.println(s); msg = Message.toMessage(s); if(msg.message.equals("FINALSCORE")){ break; @@ -51,20 +47,13 @@ public class WaitForScore extends SwingWorker { if(msg.data != null) { for (int i = 0; i < msg.data.size() - 1; i++) { String[] splitted = msg.data.get(i).split(":"); - System.out.println(splitted.toString()); ranks.addElement(new Pair(splitted[0], new Integer(splitted[1]))); } } App.game.ranks = ranks; App.game.multicastSocket.leaveGroup(InetAddress.getByName(Config.ScoreMulticastServerURI)); - - System.out.println(App.game.ranks); - System.out.println("ENDDDDd"); - - App.game.multicastSocket.disconnect(); App.game.multicastSocket.close(); - } catch (UnknownHostException e) { e.printStackTrace(); } catch (IOException e) { @@ -75,10 +64,7 @@ public class WaitForScore extends SwingWorker { @Override public void done(){ - System.out.println("Done ranks"); App.game.ranks = ranks; - // App.game.multicastSocket.close(); - //App.game.clientSocket.close(); try { this.callback.execute(); diff --git a/Commons/src/utilities/Logger.java b/Commons/src/utilities/Logger.java index a0e33e2..bdc97fd 100644 --- a/Commons/src/utilities/Logger.java +++ b/Commons/src/utilities/Logger.java @@ -29,7 +29,6 @@ public class Logger { fw = new FileWriter(logFile, true); bw = new BufferedWriter(fw); out = new PrintWriter(bw); - System.out.println(msg); Date d = new Date(); out.append("LOGGER ("+name+"): " + d.toString() + " - " + msg + "\n"); } catch (IOException e) { diff --git a/Server/src/com/texttwist/server/components/GameServer.java b/Server/src/com/texttwist/server/components/GameServer.java index 4b18f54..039b868 100644 --- a/Server/src/com/texttwist/server/components/GameServer.java +++ b/Server/src/com/texttwist/server/components/GameServer.java @@ -94,7 +94,6 @@ public class GameServer implements Runnable{ ByteBuffer bufferWords = ByteBuffer.allocate(1024); proxy = new ThreadProxy(msg, client, datagramChannel, bufferWords); threadPool.submit(proxy); - System.out.println(line); } if (line.startsWith("CLOSE")) { diff --git a/Server/src/com/texttwist/server/components/NotificationServer.java b/Server/src/com/texttwist/server/components/NotificationServer.java index 51859a3..84c4f31 100644 --- a/Server/src/com/texttwist/server/components/NotificationServer.java +++ b/Server/src/com/texttwist/server/components/NotificationServer.java @@ -24,7 +24,7 @@ public class NotificationServer implements INotificationServer { public synchronized void registerForCallback(INotificationClient clientInterface) throws RemoteException { if(!clients.contains(clientInterface)){ clients.add(clientInterface); - System.out.print("New client registered"); + System.out.println("New client registered"); } } @@ -37,16 +37,20 @@ public class NotificationServer implements INotificationServer { } public synchronized void sendInvitations(String username, DefaultListModel users){ - System.out.println("Starting callbacks"); Iterator i = clients.iterator(); - while(i.hasNext()){ - INotificationClient client = (INotificationClient) i.next(); - try{ + INotificationClient client = null; + System.out.println("Starting callbacks"); + while (i.hasNext()) { + client = (INotificationClient) i.next(); + try { client.sendInvite(username, users); } catch (RemoteException e) { - e.printStackTrace(); + try { + unregisterForCallback(client); + } catch (RemoteException e1) { + e1.printStackTrace(); + } } } } - } diff --git a/Server/src/com/texttwist/server/components/ThreadProxy.java b/Server/src/com/texttwist/server/components/ThreadProxy.java index 135e79d..568ab43 100644 --- a/Server/src/com/texttwist/server/components/ThreadProxy.java +++ b/Server/src/com/texttwist/server/components/ThreadProxy.java @@ -3,6 +3,7 @@ package com.texttwist.server.components; import com.texttwist.server.models.Match; import com.texttwist.server.tasks.*; import constants.Config; +import javafx.util.Pair; import models.Message; import javax.swing.*; @@ -46,7 +47,6 @@ public class ThreadProxy implements Callable { public Boolean call() { ByteBuffer buffer = ByteBuffer.allocate(1024); byte[] byteMessage = null; - System.out.println("Selecting right task for new thread"); if(isValidToken(request.token)){ switch(request.message){ case "START_GAME": @@ -87,7 +87,6 @@ public class ThreadProxy implements Callable { new SendMessageToAllPlayers(match, new Message("JOIN_TIMEOUT", "", "", new DefaultListModel<>()), socketChannel)); Boolean sendMessageJoinTimeoutRes = sendMessageJoinTimeout.get(); if(!sendMessageJoinTimeoutRes){ - System.out.println("RIMOSSO"); activeMatches.remove(Match.findMatchIndex(activeMatches,match.matchCreator)); return sendMessageJoinTimeoutRes; } @@ -142,19 +141,16 @@ public class ThreadProxy implements Callable { case "JOIN_GAME": Future joinMatch = threadPool.submit(new JoinMatch(request.sender, request.data, socketChannel)); try { + Match match = Match.findMatch(activeMatches, request.data.get(0));; Boolean joinMatchRes = joinMatch.get(); if(joinMatchRes){ - System.out.print("START THE GAME!!!!"); - final Match match = Match.findMatch(activeMatches, request.data.get(0)); - System.out.println(match.matchCreator); if(match.joinTimeout == false) { Future> generateLetters = threadPool.submit(new GenerateLetters()); match.setLetters(generateLetters.get()); match.letters.addElement(String.valueOf(match.multicastId)); for (int i = 0; i < match.playersSocket.size(); i++) { - System.out.println("INVIO"); SocketChannel socketClient = match.playersSocket.get(i).getValue(); if (socketClient != null) { buffer.clear(); @@ -166,18 +162,7 @@ public class ThreadProxy implements Callable { try { socketClient.write(buffer); } catch (IOException e) { - System.out.println("GAME NOT EXIST"); - buffer = ByteBuffer.allocate(1024); - if (socketChannel != null) { - Message msg = new Message("MATCH_NOT_AVAILABLE", "", null, new DefaultListModel<>()); - buffer.clear(); - System.out.println("Il match richiesto non è più disponibile "); - byteMessage = msg.toString().getBytes(); - buffer = ByteBuffer.wrap(byteMessage); - socketChannel.write(buffer); - e.printStackTrace(); - matchNotAvailable = true; - } + } //clientSocket.close(); } @@ -200,15 +185,9 @@ public class ThreadProxy implements Callable { Message msg = new Message("FINALSCORE", "SERVER", "", match.getMatchPlayersScoreAsStringList()); MulticastSocket multicastSocket = new MulticastSocket(match.multicastId); - System.out.println(multicastSocket); - System.out.println(match.multicastId); InetAddress ia = InetAddress.getByName(Config.ScoreMulticastServerURI); DatagramPacket hi = new DatagramPacket(msg.toString().getBytes(), msg.toString().length(), ia, match.multicastId); - System.out.println(msg.toString()); multicastSocket.send(hi); - - System.out.println(Match.findMatchIndex(activeMatches, match.matchCreator)); - activeMatches.remove(Match.findMatchIndex(activeMatches, match.matchCreator)); //multicastSocket.disconnect(); //multicastSocket.close(); @@ -222,7 +201,19 @@ public class ThreadProxy implements Callable { // break; //ULTIMO A JOINARE! INIZIA GIOCO } else { - System.out.print("WAIT FRIENDS"); + if(match == null){ + buffer = ByteBuffer.allocate(1024); + if (socketChannel != null) { + Message msg = new Message("MATCH_NOT_AVAILABLE", "", null, new DefaultListModel<>()); + buffer.clear(); + byteMessage = msg.toString().getBytes(); + buffer = ByteBuffer.wrap(byteMessage); + socketChannel.write(buffer); + matchNotAvailable = true; + } + //Match non disponibile + + } //NON FARE NULLA, ASPETA GLI ALTRI } } catch (InterruptedException e) { diff --git a/Server/src/com/texttwist/server/models/Match.java b/Server/src/com/texttwist/server/models/Match.java index 4ea7116..ce7ce39 100644 --- a/Server/src/com/texttwist/server/models/Match.java +++ b/Server/src/com/texttwist/server/models/Match.java @@ -89,11 +89,9 @@ public class Match { final Match m = findMatchByPlayer(player); m.printAll(); - System.out.println("ENTRO"); 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)); - System.out.println("SEtting score of " + m.playersScore.get(i).getKey() + " to " + score); } } } diff --git a/Server/src/com/texttwist/server/tasks/CheckOnlineUsers.java b/Server/src/com/texttwist/server/tasks/CheckOnlineUsers.java index aa5560c..4379a1e 100644 --- a/Server/src/com/texttwist/server/tasks/CheckOnlineUsers.java +++ b/Server/src/com/texttwist/server/tasks/CheckOnlineUsers.java @@ -17,7 +17,6 @@ public class CheckOnlineUsers implements Callable { @Override public Boolean call() throws Exception { - System.out.print("Check If users are online!"); for(int i = 0; i < users.size(); i++){ if(!(SessionsManager.getInstance().exists(users.get(i)))){ return false; diff --git a/Server/src/com/texttwist/server/tasks/ComputeHighscores.java b/Server/src/com/texttwist/server/tasks/ComputeHighscores.java index 6287966..4e2a90c 100644 --- a/Server/src/com/texttwist/server/tasks/ComputeHighscores.java +++ b/Server/src/com/texttwist/server/tasks/ComputeHighscores.java @@ -14,7 +14,6 @@ public class ComputeHighscores implements Callable> { @Override public DefaultListModel call() throws Exception { - System.out.println("COMPUTE HIGHSCORE"); DefaultListModel l = new DefaultListModel<>(); for(int i =0; i< AccountsManager.getInstance().users.size(); i++){ l.addElement(AccountsManager.getInstance().users.get(i).userName+":"+AccountsManager.getInstance().users.get(i).score); diff --git a/Server/src/com/texttwist/server/tasks/JoinMatch.java b/Server/src/com/texttwist/server/tasks/JoinMatch.java index 652df56..9224d9e 100644 --- a/Server/src/com/texttwist/server/tasks/JoinMatch.java +++ b/Server/src/com/texttwist/server/tasks/JoinMatch.java @@ -40,12 +40,11 @@ public class JoinMatch implements Callable { thisMatch.playersStatus.add(new Pair<>(name, 1)); thisMatch.playersSocket.remove(j); thisMatch.playersSocket.add(new Pair<>(name, socketChannel)); - System.out.println(playerName + ": JOINED"); return allJoined(thisMatch); } } } - return allJoined(thisMatch); + return false; } diff --git a/Server/src/com/texttwist/server/tasks/JoinTimeout.java b/Server/src/com/texttwist/server/tasks/JoinTimeout.java index 1f260eb..10c5bd1 100644 --- a/Server/src/com/texttwist/server/tasks/JoinTimeout.java +++ b/Server/src/com/texttwist/server/tasks/JoinTimeout.java @@ -11,7 +11,6 @@ public class JoinTimeout implements Callable { public JoinTimeout(Match match) { this.match = match; - System.out.println("Match started, countdown for join!"); } @@ -20,7 +19,6 @@ public class JoinTimeout implements Callable { try { Thread.currentThread().sleep(1*5*1000); - System.out.println("TIMEOUT - MANDA MESSAGGIO ERRORE A TUTTI GLI UTENTI DEL MATCH"); if(match.joinTimeout) { return false; } diff --git a/Server/src/com/texttwist/server/tasks/MatchTimeout.java b/Server/src/com/texttwist/server/tasks/MatchTimeout.java index 4544588..7093182 100644 --- a/Server/src/com/texttwist/server/tasks/MatchTimeout.java +++ b/Server/src/com/texttwist/server/tasks/MatchTimeout.java @@ -12,7 +12,6 @@ public class MatchTimeout implements Callable { public MatchTimeout() { - System.out.println("GamePage started, countdown for end words!"); } @@ -20,11 +19,8 @@ public class MatchTimeout implements Callable { public Boolean call() throws Exception { try { Thread.currentThread().sleep(3*60*1000); //TODO 5*60*1000 - System.out.println("timer scaduto"); - System.out.println("TIMEOUT - SETTA A 0 il punteggio degli utenti che non hanno inviato le parole"); return false; } catch (InterruptedException e) { - System.out.println("TIMER BLOCATO PRIMA"); return true; } } diff --git a/Server/src/com/texttwist/server/tasks/ReceiveWords.java b/Server/src/com/texttwist/server/tasks/ReceiveWords.java index 6e228bb..f7f6980 100644 --- a/Server/src/com/texttwist/server/tasks/ReceiveWords.java +++ b/Server/src/com/texttwist/server/tasks/ReceiveWords.java @@ -40,7 +40,6 @@ public class ReceiveWords implements Callable{ @Override public Boolean call() throws Exception { - System.out.print("READY TO Receive words !!!!"); Future matchTimeout = threadPool.submit(new MatchTimeout()); @@ -49,14 +48,11 @@ public class ReceiveWords implements Callable{ while(true) { DatagramChannel.receive(buffer); buffer.flip(); - System.out.println(buffer.limit()); int limits = buffer.limit(); byte bytes[] = new byte[limits]; buffer.get(bytes, 0, limits); String rcv = new String(bytes); - - System.out.println("RECEIVED: " + rcv); buffer.rewind(); msg = Message.toMessage(rcv); if(msg.message.equals("WORDS")){ @@ -67,12 +63,9 @@ public class ReceiveWords implements Callable{ //Se tutti hanno inviato le parole, blocca il timer e restituisci true computeScore.get(); - System.out.println(match.matchCreator); - System.out.println(match.allPlayersSendedHisScore()); if(match.allPlayersSendedHisScore()){ - System.out.println("TIMEOUT BLOCCATO, OK"); match.setUndefinedScorePlayersToZero(); matchTimeout.cancel(true); diff --git a/Server/src/com/texttwist/server/tasks/SendInvitations.java b/Server/src/com/texttwist/server/tasks/SendInvitations.java index ef1d613..960fd0e 100644 --- a/Server/src/com/texttwist/server/tasks/SendInvitations.java +++ b/Server/src/com/texttwist/server/tasks/SendInvitations.java @@ -26,7 +26,6 @@ public class SendInvitations implements Callable { @Override public Boolean call() throws Exception { - System.out.print("SendInvitations!"); try { Server.notificationServer.sendInvitations(sender, users); diff --git a/Server/src/com/texttwist/server/tasks/SendMessageToAllPlayers.java b/Server/src/com/texttwist/server/tasks/SendMessageToAllPlayers.java index f693c9d..23c8775 100644 --- a/Server/src/com/texttwist/server/tasks/SendMessageToAllPlayers.java +++ b/Server/src/com/texttwist/server/tasks/SendMessageToAllPlayers.java @@ -29,16 +29,12 @@ public class SendMessageToAllPlayers implements Callable { if(!match.isStarted()) { for (int i = 0; i < match.playersSocket.size(); i++) { - System.out.println(match.playersSocket.size()); socketChannel = match.playersSocket.get(i).getValue(); if (socketChannel != null) { buffer.clear(); - System.out.println("INVIO MESSAGGIO TIMEOUT A " + match.playersSocket.get(i).getKey()); byte[] byteMessage = message.toString().getBytes(); buffer = ByteBuffer.wrap(byteMessage); socketChannel.write(buffer); - //clientSocket.close(); - System.out.println("SEND TO ALL" + message.toString()); } } diff --git a/Server/src/com/texttwist/server/tasks/WaitForPlayers.java b/Server/src/com/texttwist/server/tasks/WaitForPlayers.java index 74e6958..eb6e437 100644 --- a/Server/src/com/texttwist/server/tasks/WaitForPlayers.java +++ b/Server/src/com/texttwist/server/tasks/WaitForPlayers.java @@ -25,8 +25,6 @@ public class WaitForPlayers implements Callable { @Override public Boolean call() throws Exception { - System.out.print("Wait for players!"); - return true; } } diff --git a/client_1.log b/client_1.log index dde74e7..9d93e1a 100644 --- a/client_1.log +++ b/client_1.log @@ -5001,3 +5001,411 @@ LOGGER (Client1): Fri Jul 07 12:49:56 CEST 2017 - Client starting ... LOGGER (Client1): Fri Jul 07 12:50:11 CEST 2017 - Invoked invitation with username=b|[a] LOGGER (Client1): Fri Jul 07 12:50:11 CEST 2017 - Invoked invitation with username=b|[a] LOGGER (Client1): Fri Jul 07 12:50:11 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:33:18 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 14:33:20 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 14:33:31 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 14:33:31 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 14:33:31 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:37:47 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 14:37:48 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 14:37:59 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 14:37:59 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 14:37:59 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:43:06 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 14:43:08 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 14:43:17 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 14:43:17 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:43:17 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 14:44:41 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 14:44:42 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 14:44:57 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 14:44:57 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:44:57 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 14:45:57 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 14:45:59 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 14:46:09 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 14:46:09 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:46:09 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 14:46:21 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 14:46:21 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 14:46:21 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:46:32 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 14:46:32 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 14:46:32 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:46:54 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 14:46:54 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:46:54 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 14:47:42 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 14:47:43 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 14:47:52 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 14:47:52 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 14:47:52 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:48:20 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 14:48:20 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:48:20 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 14:49:31 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 14:49:33 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 14:49:43 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 14:49:43 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:49:43 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 14:50:03 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 14:50:03 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 14:50:03 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:50:25 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 14:50:25 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 14:50:25 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:50:50 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 14:50:50 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 14:50:50 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:51:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 14:51:08 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:51:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 14:51:18 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 14:51:18 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:51:18 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 14:51:42 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 14:51:42 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:51:42 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 14:51:55 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 14:51:55 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:51:55 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 14:52:10 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 14:52:10 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:52:10 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 14:52:17 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 14:52:38 CEST 2017 - Invoked invitation with username=b|[a, c] +LOGGER (Client1): Fri Jul 07 14:52:38 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:52:38 CEST 2017 - Invoked invitation with username=b|[a, c] +LOGGER (Client1): Fri Jul 07 14:52:38 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:52:38 CEST 2017 - Invoked invitation with username=b|[a, c] +LOGGER (Client1): Fri Jul 07 14:53:25 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 14:53:36 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 14:53:36 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:53:37 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 14:53:37 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 14:54:11 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 14:54:11 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 14:54:12 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 14:54:12 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:04:58 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:04:59 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:05:10 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:05:18 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Fri Jul 07 15:05:18 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Fri Jul 07 15:05:18 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Fri Jul 07 15:05:18 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:05:33 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:05:33 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:05:33 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:05:33 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:05:55 CEST 2017 - Invoked invitation with username=b|[a, c] +LOGGER (Client1): Fri Jul 07 15:05:55 CEST 2017 - Invoked invitation with username=b|[a, c] +LOGGER (Client1): Fri Jul 07 15:05:55 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:05:55 CEST 2017 - Invoked invitation with username=b|[a, c] +LOGGER (Client1): Fri Jul 07 15:05:55 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:12:15 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:12:16 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:12:24 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 15:12:24 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 15:12:24 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:13:02 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:15:18 CEST 2017 - Invoked invitation with username=c|[b, a] +LOGGER (Client1): Fri Jul 07 15:15:18 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:15:18 CEST 2017 - Invoked invitation with username=c|[b, a] +LOGGER (Client1): Fri Jul 07 15:15:18 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:15:18 CEST 2017 - Invoked invitation with username=c|[b, a] +LOGGER (Client1): Fri Jul 07 15:16:24 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:16:25 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:16:27 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:16:43 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:17:11 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:17:11 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:17:11 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:17:48 CEST 2017 - Invoked invitation with username=a|[b, c] +LOGGER (Client1): Fri Jul 07 15:17:48 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:17:48 CEST 2017 - Invoked invitation with username=a|[b, c] +LOGGER (Client1): Fri Jul 07 15:18:41 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:18:41 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:18:41 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:19:03 CEST 2017 - Invoked invitation with username=b|[a, c] +LOGGER (Client1): Fri Jul 07 15:19:03 CEST 2017 - Invoked invitation with username=b|[a, c] +LOGGER (Client1): Fri Jul 07 15:19:03 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:19:23 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 15:19:23 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 15:19:39 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Fri Jul 07 15:19:39 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Fri Jul 07 15:20:03 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 15:20:03 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 15:20:14 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:20:30 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Fri Jul 07 15:20:30 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Fri Jul 07 15:20:30 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Fri Jul 07 15:20:30 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:20:43 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Fri Jul 07 15:20:43 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Fri Jul 07 15:20:43 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Fri Jul 07 15:20:43 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:20:58 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 15:20:58 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 15:20:58 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 15:21:11 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Fri Jul 07 15:21:11 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:21:11 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Fri Jul 07 15:21:11 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Fri Jul 07 15:21:26 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 15:21:27 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 15:21:27 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 15:21:42 CEST 2017 - Invoked invitation with username=a|[as] +LOGGER (Client1): Fri Jul 07 15:21:42 CEST 2017 - Invoked invitation with username=a|[as] +LOGGER (Client1): Fri Jul 07 15:21:42 CEST 2017 - Invoked invitation with username=a|[as] +LOGGER (Client1): Fri Jul 07 15:21:56 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Fri Jul 07 15:21:56 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Fri Jul 07 15:21:56 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Fri Jul 07 15:21:56 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:22:03 CEST 2017 - Invoked invitation with username=b|[as] +LOGGER (Client1): Fri Jul 07 15:22:03 CEST 2017 - Invoked invitation with username=b|[as] +LOGGER (Client1): Fri Jul 07 15:22:03 CEST 2017 - Invoked invitation with username=b|[as] +LOGGER (Client1): Fri Jul 07 15:22:12 CEST 2017 - Invoked invitation with username=as|[d] +LOGGER (Client1): Fri Jul 07 15:22:12 CEST 2017 - Invoked invitation with username=as|[d] +LOGGER (Client1): Fri Jul 07 15:22:12 CEST 2017 - Invoked invitation with username=as|[d] +LOGGER (Client1): Fri Jul 07 15:22:12 CEST 2017 - as ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:22:44 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 15:22:44 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 15:22:44 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 15:22:44 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:22:52 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 15:22:52 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 15:22:52 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 15:23:01 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 15:23:01 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 15:23:01 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 15:23:22 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:23:33 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 15:23:33 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 15:23:33 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 15:23:33 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 15:23:33 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:24:01 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Fri Jul 07 15:24:01 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Fri Jul 07 15:24:01 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Fri Jul 07 15:24:01 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Fri Jul 07 15:24:01 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:24:02 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 15:24:02 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 15:24:02 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 15:24:02 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 15:24:02 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:25:05 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:25:08 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:25:35 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:25:35 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:25:36 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:25:36 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:25:36 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:25:37 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:25:37 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:25:38 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:25:38 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:25:38 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:27:16 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:27:18 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:27:20 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:27:43 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:27:43 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:27:43 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:27:43 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:27:47 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:27:47 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:27:47 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:27:47 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:28:25 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:28:26 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:28:31 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:28:50 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 15:28:50 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 15:28:50 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:28:50 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 15:28:55 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Fri Jul 07 15:28:55 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Fri Jul 07 15:28:55 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:28:55 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Fri Jul 07 15:29:13 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Fri Jul 07 15:29:13 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Fri Jul 07 15:29:13 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Fri Jul 07 15:29:13 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:29:19 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:29:19 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:29:19 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:29:19 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:29:28 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:29:28 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:29:28 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:29:28 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:29:38 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Fri Jul 07 15:29:38 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Fri Jul 07 15:29:38 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Fri Jul 07 15:29:38 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:29:43 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 15:29:43 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:29:43 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 15:29:43 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 15:29:49 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:29:49 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:29:49 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:29:49 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:30:02 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 15:30:02 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 15:30:02 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:30:02 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 15:30:08 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:30:08 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:30:08 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:30:08 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:30:28 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:30:28 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:30:28 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:30:28 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:30:50 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Fri Jul 07 15:30:50 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Fri Jul 07 15:30:50 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Fri Jul 07 15:30:50 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:30:55 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 15:30:55 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 15:30:55 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:30:56 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 15:31:09 CEST 2017 - Invoked invitation with username=c|[b, a] +LOGGER (Client1): Fri Jul 07 15:31:09 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:31:09 CEST 2017 - Invoked invitation with username=c|[b, a] +LOGGER (Client1): Fri Jul 07 15:31:09 CEST 2017 - Invoked invitation with username=c|[b, a] +LOGGER (Client1): Fri Jul 07 15:31:09 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:31:39 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:31:39 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:31:39 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:31:39 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:31:42 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:31:42 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:31:43 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:31:43 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:31:59 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:32:11 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 15:32:11 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 15:32:11 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 15:32:11 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 15:32:11 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:32:18 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:32:19 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:32:19 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:32:19 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:32:19 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:32:34 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:32:34 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:32:34 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:32:34 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:32:34 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:33:37 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Fri Jul 07 15:33:37 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Fri Jul 07 15:33:37 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Fri Jul 07 15:33:37 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:33:49 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 15:33:49 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:33:49 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 15:33:49 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 15:34:11 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Fri Jul 07 15:34:11 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Fri Jul 07 15:34:11 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:34:11 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Fri Jul 07 15:34:26 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:34:26 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:34:26 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:34:26 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:34:44 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 15:34:44 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:34:44 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 15:34:44 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 15:35:45 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:35:47 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:36:22 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 15:36:22 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:36:35 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:36:35 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:36:35 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:36:35 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 15:36:43 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Fri Jul 07 15:36:43 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Fri Jul 07 15:36:43 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:36:43 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Fri Jul 07 15:36:55 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Fri Jul 07 15:36:55 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Fri Jul 07 15:36:55 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Fri Jul 07 15:36:55 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:37:11 CEST 2017 - Invoked invitation with username=a|[c, b] +LOGGER (Client1): Fri Jul 07 15:37:11 CEST 2017 - Invoked invitation with username=a|[c, b] +LOGGER (Client1): Fri Jul 07 15:37:11 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:37:11 CEST 2017 - Invoked invitation with username=a|[c, b] +LOGGER (Client1): Fri Jul 07 15:37:11 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:37:40 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:37:40 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:37:40 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:37:40 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:37:45 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 15:37:45 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:37:45 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 15:37:45 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 15:37:51 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:37:51 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:37:51 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:37:51 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:37:56 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 15:37:56 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:37:56 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 15:37:56 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 15:41:43 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:41:45 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:41:46 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:41:48 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:42:17 CEST 2017 - Invoked invitation with username=a|[b, c, d] +LOGGER (Client1): Fri Jul 07 15:42:17 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:42:17 CEST 2017 - Invoked invitation with username=a|[b, c, d] +LOGGER (Client1): Fri Jul 07 15:42:17 CEST 2017 - Invoked invitation with username=a|[b, c, d] +LOGGER (Client1): Fri Jul 07 15:42:17 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:42:17 CEST 2017 - Invoked invitation with username=a|[b, c, d] +LOGGER (Client1): Fri Jul 07 15:42:17 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:42:40 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Fri Jul 07 15:42:40 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Fri Jul 07 15:42:40 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Fri Jul 07 15:42:40 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:42:40 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Fri Jul 07 15:42:45 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Fri Jul 07 15:42:45 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:42:45 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Fri Jul 07 15:42:45 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Fri Jul 07 15:42:45 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Fri Jul 07 15:42:49 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 15:42:49 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 15:42:49 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 15:42:49 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:42:49 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 15:42:54 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 15:42:54 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 15:42:54 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:42:54 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 15:42:54 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 15:43:58 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:44:00 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:44:01 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:44:03 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:46:54 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:46:55 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:46:57 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 15:47:12 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 15:47:12 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 15:47:12 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:47:12 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 15:47:18 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:47:18 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:47:18 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:47:18 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:47:43 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:47:43 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 15:47:43 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 15:47:43 CEST 2017 - Invoked invitation with username=c|[a] diff --git a/server.log b/server.log index 236675a..77ae676 100644 --- a/server.log +++ b/server.log @@ -7105,3 +7105,240 @@ LOGGER (Server): Fri Jul 07 12:50:03 CEST 2017 - Invoked login with username=a A LOGGER (Server): Fri Jul 07 12:50:03 CEST 2017 - Login successfull LOGGER (Server): Fri Jul 07 12:50:07 CEST 2017 - Invoked login with username=b AND password=b LOGGER (Server): Fri Jul 07 12:50:07 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 14:33:15 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 14:33:16 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 14:33:16 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 14:33:16 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 14:33:23 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 14:33:23 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 14:33:27 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 14:33:27 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 14:37:44 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 14:37:45 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 14:37:45 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 14:37:45 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 14:37:49 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 14:37:49 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 14:37:55 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 14:37:55 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 14:43:03 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 14:43:03 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 14:43:03 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 14:43:03 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 14:43:09 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 14:43:09 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 14:43:13 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 14:43:13 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 14:44:37 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 14:44:37 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 14:44:38 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 14:44:38 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 14:44:45 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 14:44:45 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 14:44:52 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 14:44:52 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 14:45:55 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 14:45:56 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 14:45:56 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 14:45:56 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 14:46:00 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 14:46:01 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 14:46:04 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 14:46:04 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 14:47:38 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 14:47:39 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 14:47:39 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 14:47:39 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 14:47:45 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 14:47:45 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 14:47:49 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 14:47:49 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 14:49:29 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 14:49:29 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 14:49:29 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 14:49:29 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 14:49:38 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 14:49:38 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 14:49:40 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 14:49:40 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 14:52:05 CEST 2017 - Invoked logout with username=b AND token=a1b9r4bbt0vlo4k4sodcfjrv4r +LOGGER (Server): Fri Jul 07 14:52:05 CEST 2017 - Logout successfull +LOGGER (Server): Fri Jul 07 14:52:05 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Fri Jul 07 14:52:07 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 14:52:07 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 14:52:22 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 14:52:22 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 14:53:28 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 14:53:28 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:04:45 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 15:04:46 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 15:04:46 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 15:04:46 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 15:04:49 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 15:04:49 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 15:04:55 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 15:04:56 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 15:04:56 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 15:04:56 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 15:05:01 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 15:05:01 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:05:05 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 15:05:05 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:05:15 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 15:05:15 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:05:26 CEST 2017 - Invoked logout with username=a AND token=auhj8r7j3fj02ogno0q0udrjif +LOGGER (Server): Fri Jul 07 15:05:26 CEST 2017 - Logout successfull +LOGGER (Server): Fri Jul 07 15:05:26 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Fri Jul 07 15:05:29 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 15:05:29 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:12:12 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 15:12:12 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 15:12:12 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 15:12:12 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 15:12:18 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 15:12:18 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:12:22 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 15:12:22 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:13:04 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 15:13:04 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:16:19 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 15:16:19 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 15:16:19 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 15:16:19 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 15:16:28 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 15:16:28 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:16:35 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 15:16:35 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:17:43 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 15:17:43 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:19:58 CEST 2017 - Invoked logout with username=c AND token=cm20f0pmus3s7kb35guaipt26j +LOGGER (Server): Fri Jul 07 15:19:58 CEST 2017 - Logout successfull +LOGGER (Server): Fri Jul 07 15:19:58 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Fri Jul 07 15:20:00 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 15:20:00 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:20:22 CEST 2017 - Invoked login with username=d AND password= +LOGGER (Server): Fri Jul 07 15:20:22 CEST 2017 - Login unsuccessfull +LOGGER (Server): Fri Jul 07 15:20:25 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Fri Jul 07 15:20:25 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:21:30 CEST 2017 - Invoked logout with username=c AND token=jelupnh37pqhno34srgavcjbhl +LOGGER (Server): Fri Jul 07 15:21:30 CEST 2017 - Logout successfull +LOGGER (Server): Fri Jul 07 15:21:30 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Fri Jul 07 15:21:37 CEST 2017 - Invoked register with username=as AND password=as +LOGGER (Server): Fri Jul 07 15:21:37 CEST 2017 - Registration successfull +LOGGER (Server): Fri Jul 07 15:21:39 CEST 2017 - Invoked login with username=as AND password=as +LOGGER (Server): Fri Jul 07 15:21:39 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:22:37 CEST 2017 - Invoked logout with username=as AND token=d3vf9ci3k7n1upiouulm8vbl1b +LOGGER (Server): Fri Jul 07 15:22:37 CEST 2017 - Logout successfull +LOGGER (Server): Fri Jul 07 15:22:37 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Fri Jul 07 15:22:40 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 15:22:40 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:23:29 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 15:23:29 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:25:14 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 15:25:14 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:25:14 CEST 2017 - Invoked logout with username=c AND token=6n4nkantivpt703s45bp35c8gu +LOGGER (Server): Fri Jul 07 15:25:14 CEST 2017 - Logout successfull +LOGGER (Server): Fri Jul 07 15:25:14 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Fri Jul 07 15:25:16 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 15:25:16 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:25:25 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 15:25:25 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:25:25 CEST 2017 - Invoked logout with username=b AND token=43cl7p67jvanhughacr8bom4q3 +LOGGER (Server): Fri Jul 07 15:25:25 CEST 2017 - Logout successfull +LOGGER (Server): Fri Jul 07 15:25:25 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Fri Jul 07 15:25:27 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 15:25:27 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:27:14 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 15:27:14 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 15:27:14 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 15:27:14 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 15:27:33 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 15:27:33 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:27:35 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 15:27:35 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:27:38 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 15:27:38 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:28:22 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 15:28:22 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 15:28:22 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 15:28:22 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 15:28:38 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 15:28:38 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:28:40 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 15:28:40 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:28:42 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 15:28:42 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:32:08 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Fri Jul 07 15:32:08 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:33:11 CEST 2017 - Invoked logout with username=b AND token=ltlev14ijvfvnccbsomju0ru8q +LOGGER (Server): Fri Jul 07 15:33:11 CEST 2017 - Logout successfull +LOGGER (Server): Fri Jul 07 15:33:11 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Fri Jul 07 15:33:13 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 15:33:13 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:33:13 CEST 2017 - Invoked logout with username=a AND token=aokdj816tvktjqpno4t315duo0 +LOGGER (Server): Fri Jul 07 15:33:13 CEST 2017 - Logout successfull +LOGGER (Server): Fri Jul 07 15:33:13 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Fri Jul 07 15:33:15 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 15:33:15 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:35:54 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 15:35:54 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:35:54 CEST 2017 - Invoked logout with username=b AND token=khg8l3r8a3ffsjndj2q9fscrtq +LOGGER (Server): Fri Jul 07 15:35:54 CEST 2017 - Logout successfull +LOGGER (Server): Fri Jul 07 15:35:54 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Fri Jul 07 15:35:56 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 15:35:56 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:36:00 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 15:36:00 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:36:03 CEST 2017 - Invoked logout with username=c AND token=jn9rohbva6mpk664s9lgnlub2s +LOGGER (Server): Fri Jul 07 15:36:03 CEST 2017 - Logout successfull +LOGGER (Server): Fri Jul 07 15:36:03 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Fri Jul 07 15:36:04 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 15:36:04 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:36:17 CEST 2017 - Invoked logout with username=b AND token=jserbm8ilfkpbd7pk833v7b5n +LOGGER (Server): Fri Jul 07 15:36:17 CEST 2017 - Logout successfull +LOGGER (Server): Fri Jul 07 15:36:17 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Fri Jul 07 15:36:19 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 15:36:19 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:38:18 CEST 2017 - Invoked logout with username=b AND token=ovg1tvdavtg7j1oca0pqe21us6 +LOGGER (Server): Fri Jul 07 15:38:18 CEST 2017 - Logout successfull +LOGGER (Server): Fri Jul 07 15:38:18 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Fri Jul 07 15:38:19 CEST 2017 - Invoked logout with username=c AND token=sr52t3bd276akut3og2um172se +LOGGER (Server): Fri Jul 07 15:38:19 CEST 2017 - Logout successfull +LOGGER (Server): Fri Jul 07 15:38:19 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Fri Jul 07 15:39:57 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 15:39:57 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:40:00 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 15:40:00 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:40:41 CEST 2017 - Invoked logout with username=b AND token=nna88vl6enpq2v51710l1f05om +LOGGER (Server): Fri Jul 07 15:40:41 CEST 2017 - Logout successfull +LOGGER (Server): Fri Jul 07 15:40:41 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Fri Jul 07 15:41:41 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 15:41:41 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 15:41:41 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 15:41:41 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 15:42:02 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 15:42:02 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:42:04 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 15:42:04 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:42:07 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 15:42:07 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:42:10 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Fri Jul 07 15:42:10 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:44:04 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 15:44:04 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:44:08 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 15:44:08 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:44:13 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 15:44:13 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:44:17 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Fri Jul 07 15:44:17 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:46:51 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 15:46:51 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 15:46:51 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 15:46:52 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 15:47:05 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 15:47:05 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:47:07 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 15:47:07 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 15:47:10 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 15:47:10 CEST 2017 - Login successfull From cb63402b9f232f964f53643978266717ae517201 Mon Sep 17 00:00:00 2001 From: Lorenzo Iovino Date: Sun, 9 Jul 2017 16:45:46 +0200 Subject: [PATCH 03/25] SUPER DUPER HYPER!!! --- .idea/workspace.xml | 725 +++++------ Client/src/com/texttwist/client/App.java | 20 + .../com/texttwist/client/tasks/SendWords.java | 22 +- Commons/src/constants/Config.java | 2 +- .../server/components/GameServer.java | 15 +- .../server/components/ThreadProxy.java | 80 +- .../com/texttwist/server/models/Match.java | 33 +- .../texttwist/server/tasks/ComputeScore.java | 49 +- .../texttwist/server/tasks/JoinTimeout.java | 3 +- .../texttwist/server/tasks/ReceiveWords.java | 60 +- client_1.log | 1067 +++++++++++++++ server.log | 1159 +++++++++++++++++ 12 files changed, 2741 insertions(+), 494 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 0c57da6..57d8a32 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -6,28 +6,15 @@ - - - - + - - - - + - - - - + - - - - @@ -40,7 +27,7 @@ - + com.texttwist.client.* @@ -50,107 +37,103 @@ - - + + - - - - - - - - - - - - - - + + - - + + - - + + - - + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - + + - - + + + + + + + + + + + + + + - - + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -167,36 +150,36 @@ - System.out.pr - System\.out\.println\(elem\.account\.userName \+ \" \| \" \+ elem\.token\)\;\n - Systemout - Systemou - Systemo - Syst - Sys - G - System\.out\.println\(\"SEtting score of \" \+ m\.playersScore\.get\(i\)\.getKey\(\) \+ \" to \" \+ score\)\;\n - Syste - System. - System\.out\.println\(\"Eccezione\" \+ e\)\;\n - S - System - System.o - System.out - n - new client - new client r - new client re - new client regi - l - login - TI - TIMEOUT - ecc - ecce - eccez - eccezio - eccezion + ma + match + match.sta + match.star + match.start + ne + new Thr + new Thre + F + Future + si + singlethr + singleth + singlet + single + singleTh + singleT + t + threa + threadsi + threads + thr + thread + threadp + threadpo + threadpool + threadpool. + bufferWo + datag + buffer @@ -213,7 +196,6 @@ @@ -315,90 +298,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -731,6 +630,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1251,46 +1234,46 @@ + - - - + + + + + + + + + + + - - - - + + - - - - - - - - @@ -1301,7 +1284,7 @@ - @@ -1310,18 +1293,6 @@ - - - - - - - - - - - - @@ -1375,13 +1346,11 @@ - - + + - - - - + + @@ -1427,14 +1396,6 @@ - - - - - - - - @@ -1451,14 +1412,6 @@ - - - - - - - - @@ -1499,14 +1452,6 @@ - - - - - - - - @@ -1515,14 +1460,6 @@ - - - - - - - - @@ -1547,14 +1484,6 @@ - - - - - - - - @@ -1573,16 +1502,8 @@ - - - - - - - - - - + + @@ -1595,14 +1516,6 @@ - - - - - - - - @@ -1611,40 +1524,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1655,10 +1534,10 @@ - - + + - + @@ -1679,40 +1558,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1725,12 +1570,144 @@ + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Client/src/com/texttwist/client/App.java b/Client/src/com/texttwist/client/App.java index 5cd18b8..5dfe15a 100644 --- a/Client/src/com/texttwist/client/App.java +++ b/Client/src/com/texttwist/client/App.java @@ -12,8 +12,11 @@ import utilities.Logger; import javax.swing.*; import java.awt.*; +import java.awt.event.WindowAdapter; +import java.awt.event.WindowEvent; import java.io.File; import java.io.IOException; +import java.net.MalformedURLException; import java.rmi.NotBoundException; import java.rmi.RemoteException; import java.rmi.registry.LocateRegistry; @@ -67,6 +70,23 @@ public class App extends JFrame { app = this; HomePage home = new HomePage(this); + + /* app.addWindowListener(new WindowAdapter() + { + public void windowClosing(WindowEvent e) + { + try { + authService.logout(App.session.account.userName); + System.out.println("LOGOUT BECAUSE WINDOW CLOSED"); + } catch (RemoteException e1) { + e1.printStackTrace(); + } catch (NotBoundException e1) { + e1.printStackTrace(); + } catch (MalformedURLException e1) { + e1.printStackTrace(); + } + } + });*/ } public static Point getWindowsPosition(){ diff --git a/Client/src/com/texttwist/client/tasks/SendWords.java b/Client/src/com/texttwist/client/tasks/SendWords.java index 2d16c62..63e048a 100644 --- a/Client/src/com/texttwist/client/tasks/SendWords.java +++ b/Client/src/com/texttwist/client/tasks/SendWords.java @@ -29,32 +29,20 @@ public class SendWords extends SwingWorker { @Override public Void doInBackground() { - DatagramSocket clientSocket = null; try { - InetAddress hostIP = InetAddress.getLocalHost(); - InetSocketAddress myAddress = - new InetSocketAddress(hostIP, Config.WordsReceiverServerPort); + InetSocketAddress myAddress = new InetSocketAddress(Config.WordsReceiverServerURI, Config.WordsReceiverServerPort); DatagramChannel datagramChannel = DatagramChannel.open(); datagramChannel.bind(null); - ByteBuffer buffer = ByteBuffer.allocate(1024); + buffer.clear(); + System.out.println("SENDER=" + App.session.account.userName); Message msg = new Message("WORDS", App.session.account.userName, "", words); String sentence = msg.toString(); buffer.put(sentence.getBytes()); buffer.flip(); datagramChannel.send(buffer, myAddress); - buffer.clear(); - - /*clientSocket = new DatagramSocket(); - - InetAddress IPAddress = InetAddress.getByName(Config.WordsReceiverServerURI); - byte[] sendData = new byte[1024]; - Message msg = new Message("WORDS", App.session.account.userName, "", words); - String sentence = msg.toString(); - sendData = sentence.getBytes(); - DatagramPacket sendPacket = new DatagramPacket(sendData, sendData.length, IPAddress, Config.WordsReceiverServerPort); - clientSocket.send(sendPacket); - clientSocket.close();*/ + System.out.println("WORDS INVIATE"); + System.out.println(sentence); return null; } catch (UnknownHostException e) { diff --git a/Commons/src/constants/Config.java b/Commons/src/constants/Config.java index 181fb13..eafecb0 100644 --- a/Commons/src/constants/Config.java +++ b/Commons/src/constants/Config.java @@ -23,7 +23,7 @@ public class Config { public static String NotificationServerName ="notification"; - public static int timeoutGame = 10; + public static int timeoutGame = 5; public static String getNotificationServerURI(){ diff --git a/Server/src/com/texttwist/server/components/GameServer.java b/Server/src/com/texttwist/server/components/GameServer.java index 039b868..b65010e 100644 --- a/Server/src/com/texttwist/server/components/GameServer.java +++ b/Server/src/com/texttwist/server/components/GameServer.java @@ -2,6 +2,7 @@ package com.texttwist.server.components; import com.texttwist.server.models.Dictionary; import com.texttwist.server.models.Match; +import com.texttwist.server.tasks.ReceiveWords; import constants.Config; import models.Message; import utilities.Logger; @@ -25,12 +26,14 @@ public class GameServer implements Runnable{ private int serverPort; private ThreadProxy proxy; + private ReceiveWords wordsReceiver; private DatagramChannel datagramChannel; private Selector selector = null; private ExecutorService threadPool = Executors.newCachedThreadPool(); private String dictionaryPath = "./Server/resources/dictionary"; public static Dictionary dict; + ByteBuffer bufferWords = ByteBuffer.allocate(1024); public static List activeMatches = Collections.synchronizedList(new ArrayList<>()); @@ -50,10 +53,13 @@ public class GameServer implements Runnable{ serverSocketChannel.configureBlocking(false); serverSocketChannel.socket().bind(new InetSocketAddress(serverPort)); serverSocketChannel.register(selector, OP_ACCEPT); - InetSocketAddress address = new InetSocketAddress(Config.WordsReceiverServerPort); + InetSocketAddress address = new InetSocketAddress(Config.WordsReceiverServerURI,Config.WordsReceiverServerPort); datagramChannel = DatagramChannel.open(); - DatagramSocket datagramSocket = datagramChannel.socket(); - datagramSocket.bind(address); + datagramChannel.configureBlocking(true); + datagramChannel.connect(address); + + wordsReceiver = new ReceiveWords(datagramChannel, bufferWords); + threadPool.submit(wordsReceiver); Logger.write("GamePage Service is running at "+this.serverPort+" port..."); } catch (IOException e) { @@ -91,8 +97,7 @@ public class GameServer implements Runnable{ if (line.startsWith("MESSAGE")) { SessionsManager.getInstance().printAll(); Message msg = Message.toMessage(line); - ByteBuffer bufferWords = ByteBuffer.allocate(1024); - proxy = new ThreadProxy(msg, client, datagramChannel, bufferWords); + proxy = new ThreadProxy(msg, client, bufferMessages); threadPool.submit(proxy); } diff --git a/Server/src/com/texttwist/server/components/ThreadProxy.java b/Server/src/com/texttwist/server/components/ThreadProxy.java index 568ab43..ad478ea 100644 --- a/Server/src/com/texttwist/server/components/ThreadProxy.java +++ b/Server/src/com/texttwist/server/components/ThreadProxy.java @@ -1,5 +1,6 @@ package com.texttwist.server.components; +import com.sun.org.apache.xpath.internal.operations.Bool; import com.texttwist.server.models.Match; import com.texttwist.server.tasks.*; import constants.Config; @@ -26,16 +27,15 @@ public class ThreadProxy implements Callable { protected final ExecutorService threadPool = Executors.newCachedThreadPool(); private final Message request; private final SocketChannel socketChannel; - private final DatagramChannel datagramChannel; - private ByteBuffer buffer; + private ByteBuffer bufferMessage; boolean matchNotAvailable =false; - ThreadProxy(Message request, SocketChannel socketChannel, DatagramChannel datagramChannel, ByteBuffer buffer){ + ThreadProxy(Message request, SocketChannel socketChannel, ByteBuffer bufferMessage) { this.request = request; this.socketChannel = socketChannel; - this.datagramChannel = datagramChannel; - this.buffer = buffer; + this.bufferMessage = bufferMessage; + } @@ -45,7 +45,7 @@ public class ThreadProxy implements Callable { @Override public Boolean call() { - ByteBuffer buffer = ByteBuffer.allocate(1024); + bufferMessage = ByteBuffer.allocate(1024); byte[] byteMessage = null; if(isValidToken(request.token)){ switch(request.message){ @@ -76,13 +76,14 @@ public class ThreadProxy implements Callable { //NON FARE NULLA, ASPETTA GLI ALTRI Message message = new Message("INVITES_ALL_SENDED", "", "", new DefaultListModel()); byteMessage = message.toString().getBytes(); - buffer = ByteBuffer.wrap(byteMessage); - socketChannel.write(buffer); + bufferMessage = ByteBuffer.wrap(byteMessage); + socketChannel.write(bufferMessage); Future joinTimeout = threadPool.submit(new JoinTimeout(match)); - Boolean joinTimeoutRes = joinTimeout.get(); - if(!joinTimeoutRes){ + 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(); @@ -90,6 +91,8 @@ public class ThreadProxy implements Callable { activeMatches.remove(Match.findMatchIndex(activeMatches,match.matchCreator)); return sendMessageJoinTimeoutRes; } + } else { + System.out.println("TIMEOUT FINITO SENZA EFFETTI"); } } @@ -105,9 +108,9 @@ public class ThreadProxy implements Callable { Message message = new Message("USER_NOT_ONLINE", "", "", new DefaultListModel()); byteMessage = new String(message.toString()).getBytes(); - buffer.clear(); - buffer = ByteBuffer.wrap(byteMessage); - this.socketChannel.write(buffer); + bufferMessage.clear(); + bufferMessage = ByteBuffer.wrap(byteMessage); + this.socketChannel.write(bufferMessage); break; } } catch (InterruptedException e) { @@ -125,9 +128,9 @@ public class ThreadProxy implements Callable { Message message = new Message("HIGHSCORES", "", "", computeHighscoresRes); byteMessage = message.toString().getBytes(); - buffer = ByteBuffer.wrap(byteMessage); + bufferMessage = ByteBuffer.wrap(byteMessage); try { - socketChannel.write(buffer); + socketChannel.write(bufferMessage); } catch (IOException e) { e.printStackTrace(); } @@ -145,7 +148,7 @@ public class ThreadProxy implements Callable { Boolean joinMatchRes = joinMatch.get(); if(joinMatchRes){ - if(match.joinTimeout == false) { + if(!match.joinTimeout) { Future> generateLetters = threadPool.submit(new GenerateLetters()); match.setLetters(generateLetters.get()); match.letters.addElement(String.valueOf(match.multicastId)); @@ -153,47 +156,24 @@ public class ThreadProxy implements Callable { for (int i = 0; i < match.playersSocket.size(); i++) { SocketChannel socketClient = match.playersSocket.get(i).getValue(); if (socketClient != null) { - buffer.clear(); + bufferMessage.clear(); Message message = new Message("GAME_STARTED", "", "", match.letters); match.startGame(); + + match.timeout.cancel(true); + System.out.println("TIMEOUT CANCELLEd"); byteMessage = message.toString().getBytes(); - buffer = ByteBuffer.wrap(byteMessage); + bufferMessage = ByteBuffer.wrap(byteMessage); try { - socketClient.write(buffer); + socketClient.write(bufferMessage); } catch (IOException e) { } //clientSocket.close(); } } - if (!matchNotAvailable) { - - //Start receive words: tempo masimo 5 minuti per completare l'invio delle lettere. - Future receiveWords = threadPool.submit(new ReceiveWords(match, datagramChannel, buffer)); - Boolean receiveWordsRes = receiveWords.get(); - - if (receiveWordsRes) { - System.out.println("ZERO PUNTI a chi non ha ancora inviato le lettere, TIMER SCADUTO"); - } else { - System.out.println("TUTTI I GIOCATORI HANNO CONSEGNATO IN TEMPO"); - } - - match.setUndefinedScorePlayersToZero(); - - while (true) { - Message msg = new Message("FINALSCORE", "SERVER", "", match.getMatchPlayersScoreAsStringList()); - - 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(); - } - - } else { + if (matchNotAvailable) { return false; } } @@ -202,13 +182,13 @@ public class ThreadProxy implements Callable { //ULTIMO A JOINARE! INIZIA GIOCO } else { if(match == null){ - buffer = ByteBuffer.allocate(1024); + bufferMessage = ByteBuffer.allocate(1024); if (socketChannel != null) { Message msg = new Message("MATCH_NOT_AVAILABLE", "", null, new DefaultListModel<>()); - buffer.clear(); + bufferMessage.clear(); byteMessage = msg.toString().getBytes(); - buffer = ByteBuffer.wrap(byteMessage); - socketChannel.write(buffer); + bufferMessage = ByteBuffer.wrap(byteMessage); + socketChannel.write(bufferMessage); matchNotAvailable = true; } //Match non disponibile diff --git a/Server/src/com/texttwist/server/models/Match.java b/Server/src/com/texttwist/server/models/Match.java index ce7ce39..2619e80 100644 --- a/Server/src/com/texttwist/server/models/Match.java +++ b/Server/src/com/texttwist/server/models/Match.java @@ -1,6 +1,7 @@ package com.texttwist.server.models; import com.texttwist.server.components.GameServer; +import com.texttwist.server.tasks.MatchTimeout; import constants.Config; import javafx.util.Pair; @@ -9,6 +10,10 @@ import java.net.DatagramSocket; import java.net.Socket; import java.nio.channels.SocketChannel; import java.util.*; +import java.util.concurrent.Callable; +import java.util.concurrent.ExecutorService; +import java.util.concurrent.Executors; +import java.util.concurrent.Future; import static com.texttwist.server.components.GameServer.activeMatches; @@ -21,8 +26,12 @@ public class Match { private boolean started = false; public final String matchCreator; public Integer multicastId; + public Future timeout; + public Future matchTimeout; public boolean joinTimeout =true; public DefaultListModel letters; + protected ExecutorService threadPool = Executors.newSingleThreadExecutor(); + public final List> playersScore = Collections.synchronizedList(new ArrayList<>()); public Match(String matchCreator, DefaultListModel players){ @@ -38,16 +47,17 @@ public class Match { } 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); + synchronized (matches) { + for (int i = 0; i < matches.size(); i++) { + if (matches.get(i).matchCreator.equals(matchName)) { + return matches.get(i); + } } + return null; } - return null; } - public void printAll(){ for (int i = 0; i < playersScore.size(); i++) { System.out.println(playersScore.get(i).getKey() + " : " +playersScore.get(i).getValue()); @@ -67,9 +77,9 @@ public class Match { return started; } - public Match findMatchByPlayer(String player){ + public static Match findMatchByPlayer(String player){ for (int i = 0; i < activeMatches.size(); i++) { - for (int j = 0; j < playersStatus.size(); j++) { + for (int j = 0; j < activeMatches.get(i).playersStatus.size(); j++) { if (activeMatches.get(i).playersStatus.get(j).getKey().equals(player)) { return activeMatches.get(i); } @@ -83,20 +93,25 @@ public class Match { public void startGame(){ this.started=true; + this.matchTimeout = threadPool.submit(new MatchTimeout()); + } public void setScore(String player, Integer score){ - final Match m = findMatchByPlayer(player); - m.printAll(); + Match m = findMatchByPlayer(player); + synchronized (m) { + 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)); } } + } } public Boolean allPlayersSendedHisScore(){ + System.out.println(matchCreator); printAll(); for (int i = 0; i < playersScore.size(); i++) { if (playersScore.get(i).getValue() == -1) { diff --git a/Server/src/com/texttwist/server/tasks/ComputeScore.java b/Server/src/com/texttwist/server/tasks/ComputeScore.java index 112051f..e34fb18 100644 --- a/Server/src/com/texttwist/server/tasks/ComputeScore.java +++ b/Server/src/com/texttwist/server/tasks/ComputeScore.java @@ -3,11 +3,18 @@ import com.texttwist.client.App; import com.texttwist.server.components.AccountsManager; import com.texttwist.server.models.Dictionary; import com.texttwist.server.models.Match; +import constants.Config; +import models.Message; import models.User; import javax.swing.*; +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. */ @@ -15,26 +22,62 @@ public class ComputeScore implements Callable { public DefaultListModel words; public final String sender; - public final Match match; + public Match match; - public ComputeScore(String sender, Match match, DefaultListModel words){ + public ComputeScore(String sender, DefaultListModel words, Match match){ this.words = words; - this.sender = sender; this.match = match; + this.sender = sender; } @Override public Integer call() throws Exception { + System.out.println("COMPUTE SCORE STARTED"); + System.out.println(match); + System.out.println("COMPUTE SCORE STAsssssRTED"); + + synchronized (match) { + System.out.print("CALCOLO LO SCORE PER " + match.matchCreator); Integer score = 0; + for (int i = 0; i < words.size(); i++) { if (isValid(words.get(i), match.letters)) { score += words.get(i).length(); } } + + System.out.println("SOODDISDIS"); match.setScore(sender, score); + User u = AccountsManager.getInstance().findUser(sender); u.addScore(score); + + if(match.allPlayersSendedHisScore()) { + + match.matchTimeout.cancel(true); + //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()); + + 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; + + } + } private Boolean isValid(String word, DefaultListModel letters) { diff --git a/Server/src/com/texttwist/server/tasks/JoinTimeout.java b/Server/src/com/texttwist/server/tasks/JoinTimeout.java index 10c5bd1..162b772 100644 --- a/Server/src/com/texttwist/server/tasks/JoinTimeout.java +++ b/Server/src/com/texttwist/server/tasks/JoinTimeout.java @@ -17,7 +17,8 @@ public class JoinTimeout implements Callable { @Override public Boolean call() throws Exception { try { - Thread.currentThread().sleep(1*5*1000); + Thread.currentThread().sleep(1*20*1000); + System.out.println("TIMEOUTTTT"); if(match.joinTimeout) { return false; diff --git a/Server/src/com/texttwist/server/tasks/ReceiveWords.java b/Server/src/com/texttwist/server/tasks/ReceiveWords.java index f7f6980..19c69e4 100644 --- a/Server/src/com/texttwist/server/tasks/ReceiveWords.java +++ b/Server/src/com/texttwist/server/tasks/ReceiveWords.java @@ -8,17 +8,20 @@ import models.Message; import javax.swing.*; import javax.xml.crypto.Data; -import java.net.DatagramPacket; -import java.net.DatagramSocket; -import java.net.InetAddress; +import java.net.*; import java.nio.ByteBuffer; import java.nio.channels.DatagramChannel; +import java.nio.channels.SelectionKey; +import java.nio.channels.Selector; +import java.nio.channels.SocketChannel; import java.util.Arrays; import java.util.concurrent.Callable; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.Future; +import static com.texttwist.server.components.GameServer.activeMatches; + /** * Created by loke on 27/06/2017. */ @@ -26,53 +29,42 @@ public class ReceiveWords implements Callable{ protected ExecutorService threadPool = Executors.newCachedThreadPool(); - public DatagramChannel DatagramChannel; - public final Match match; - byte[] receiveData = new byte[1024]; + public DatagramChannel channel; ByteBuffer buffer; - public ReceiveWords(Match match, DatagramChannel DatagramChannel, ByteBuffer buffer) { - this.match = match; + public ReceiveWords(DatagramChannel channel, ByteBuffer buffer) { this.buffer = buffer; - this.DatagramChannel = DatagramChannel; + this.channel = channel; } @Override public Boolean call() throws Exception { - Future matchTimeout = threadPool.submit(new MatchTimeout()); - DatagramPacket receivePacket = new DatagramPacket(receiveData, receiveData.length); Message msg; + DatagramSocket s = new DatagramSocket(Config.WordsReceiverServerPort); + + while(true) { - DatagramChannel.receive(buffer); - buffer.flip(); - int limits = buffer.limit(); - byte bytes[] = new byte[limits]; - buffer.get(bytes, 0, limits); - String rcv = new String(bytes); + byte[] buf = new byte[1024]; + System.out.println("RECEIVIN WORDS"); - buffer.rewind(); - msg = Message.toMessage(rcv); - if(msg.message.equals("WORDS")){ - break; + DatagramPacket packet = new DatagramPacket(buf, buf.length); + s.receive(packet); + + System.out.println("WORDS RECEIVED"); + String rcv = new String(packet.getData()); + System.out.println(rcv); + if (rcv.startsWith("MESSAGE")) { + msg = Message.toMessage(rcv); + System.out.println(msg.sender); + Match match = Match.findMatchByPlayer(msg.sender); + threadPool.submit(new ComputeScore(msg.sender, msg.data, match)); } + } - Future computeScore = threadPool.submit(new ComputeScore(msg.sender, match, msg.data)); - //Se tutti hanno inviato le parole, blocca il timer e restituisci true - computeScore.get(); - - - if(match.allPlayersSendedHisScore()){ - match.setUndefinedScorePlayersToZero(); - - matchTimeout.cancel(true); - DatagramChannel.close(); - return true; - } - return false; } diff --git a/client_1.log b/client_1.log index 9d93e1a..d7c1d9b 100644 --- a/client_1.log +++ b/client_1.log @@ -5409,3 +5409,1070 @@ LOGGER (Client1): Fri Jul 07 15:47:43 CEST 2017 - Invoked invitation with userna LOGGER (Client1): Fri Jul 07 15:47:43 CEST 2017 - Invoked invitation with username=c|[a] LOGGER (Client1): Fri Jul 07 15:47:43 CEST 2017 - c ti ha sfidato! LOGGER (Client1): Fri Jul 07 15:47:43 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 18:08:19 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:08:20 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:08:27 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:08:27 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:08:27 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:08:46 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:08:46 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:08:46 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:09:36 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:09:38 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:09:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:09:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:09:44 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:10:02 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:10:02 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:10:02 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:14:54 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:14:58 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:15:05 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:15:05 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:15:05 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:16:30 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:16:32 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:16:40 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:16:40 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:16:40 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:18:26 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:18:29 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:19:17 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:19:17 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:19:17 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:19:48 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:19:59 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:20:00 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:20:07 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:20:07 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:20:07 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:23:48 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:23:50 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:24:01 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:24:01 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:24:01 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:24:19 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:24:19 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:24:19 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:24:50 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:24:50 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:24:50 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:26:55 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:27:15 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:27:16 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:27:22 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:27:22 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:27:22 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:27:40 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:27:40 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:27:40 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:28:01 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:28:01 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:28:01 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:28:34 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:28:36 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:28:38 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:28:40 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:29:18 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Fri Jul 07 18:29:18 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Fri Jul 07 18:29:18 CEST 2017 - f ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:29:18 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Fri Jul 07 18:29:18 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Fri Jul 07 18:29:18 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Fri Jul 07 18:29:18 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Fri Jul 07 18:29:27 CEST 2017 - Invoked invitation with username=d|[e, c] +LOGGER (Client1): Fri Jul 07 18:29:27 CEST 2017 - Invoked invitation with username=d|[e, c] +LOGGER (Client1): Fri Jul 07 18:29:27 CEST 2017 - Invoked invitation with username=d|[e, c] +LOGGER (Client1): Fri Jul 07 18:29:27 CEST 2017 - Invoked invitation with username=d|[e, c] +LOGGER (Client1): Fri Jul 07 18:29:27 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:29:27 CEST 2017 - Invoked invitation with username=d|[e, c] +LOGGER (Client1): Fri Jul 07 18:29:27 CEST 2017 - Invoked invitation with username=d|[e, c] +LOGGER (Client1): Fri Jul 07 18:29:27 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:29:41 CEST 2017 - Invoked invitation with username=b|[f] +LOGGER (Client1): Fri Jul 07 18:29:41 CEST 2017 - Invoked invitation with username=b|[f] +LOGGER (Client1): Fri Jul 07 18:29:41 CEST 2017 - Invoked invitation with username=b|[f] +LOGGER (Client1): Fri Jul 07 18:29:41 CEST 2017 - Invoked invitation with username=b|[f] +LOGGER (Client1): Fri Jul 07 18:29:41 CEST 2017 - Invoked invitation with username=b|[f] +LOGGER (Client1): Fri Jul 07 18:29:41 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:29:41 CEST 2017 - Invoked invitation with username=b|[f] +LOGGER (Client1): Fri Jul 07 18:29:48 CEST 2017 - Invoked invitation with username=a|[f] +LOGGER (Client1): Fri Jul 07 18:29:48 CEST 2017 - Invoked invitation with username=a|[f] +LOGGER (Client1): Fri Jul 07 18:29:48 CEST 2017 - Invoked invitation with username=a|[f] +LOGGER (Client1): Fri Jul 07 18:29:48 CEST 2017 - Invoked invitation with username=a|[f] +LOGGER (Client1): Fri Jul 07 18:29:48 CEST 2017 - Invoked invitation with username=a|[f] +LOGGER (Client1): Fri Jul 07 18:29:48 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:29:48 CEST 2017 - Invoked invitation with username=a|[f] +LOGGER (Client1): Fri Jul 07 18:30:04 CEST 2017 - Invoked invitation with username=e|[d] +LOGGER (Client1): Fri Jul 07 18:30:04 CEST 2017 - Invoked invitation with username=e|[d] +LOGGER (Client1): Fri Jul 07 18:30:04 CEST 2017 - Invoked invitation with username=e|[d] +LOGGER (Client1): Fri Jul 07 18:30:04 CEST 2017 - e ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:30:04 CEST 2017 - Invoked invitation with username=e|[d] +LOGGER (Client1): Fri Jul 07 18:30:04 CEST 2017 - Invoked invitation with username=e|[d] +LOGGER (Client1): Fri Jul 07 18:30:04 CEST 2017 - Invoked invitation with username=e|[d] +LOGGER (Client1): Fri Jul 07 18:30:25 CEST 2017 - Invoked invitation with username=f|[d, c] +LOGGER (Client1): Fri Jul 07 18:30:25 CEST 2017 - Invoked invitation with username=f|[d, c] +LOGGER (Client1): Fri Jul 07 18:30:25 CEST 2017 - Invoked invitation with username=f|[d, c] +LOGGER (Client1): Fri Jul 07 18:30:25 CEST 2017 - f ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:30:25 CEST 2017 - Invoked invitation with username=f|[d, c] +LOGGER (Client1): Fri Jul 07 18:30:25 CEST 2017 - f ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:30:25 CEST 2017 - Invoked invitation with username=f|[d, c] +LOGGER (Client1): Fri Jul 07 18:30:25 CEST 2017 - Invoked invitation with username=f|[d, c] +LOGGER (Client1): Fri Jul 07 18:30:32 CEST 2017 - Invoked invitation with username=e|[b] +LOGGER (Client1): Fri Jul 07 18:30:32 CEST 2017 - e ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:30:32 CEST 2017 - Invoked invitation with username=e|[b] +LOGGER (Client1): Fri Jul 07 18:30:32 CEST 2017 - Invoked invitation with username=e|[b] +LOGGER (Client1): Fri Jul 07 18:30:32 CEST 2017 - Invoked invitation with username=e|[b] +LOGGER (Client1): Fri Jul 07 18:30:32 CEST 2017 - Invoked invitation with username=e|[b] +LOGGER (Client1): Fri Jul 07 18:30:32 CEST 2017 - Invoked invitation with username=e|[b] +LOGGER (Client1): Fri Jul 07 18:32:56 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:32:58 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:32:59 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:33:01 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:33:20 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 18:33:20 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 18:33:20 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:33:20 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 18:33:20 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 18:33:21 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Fri Jul 07 18:33:21 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Fri Jul 07 18:33:21 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Fri Jul 07 18:33:21 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:33:21 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Fri Jul 07 18:34:45 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:34:47 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:34:53 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:34:53 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:34:53 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:35:27 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:35:27 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:35:27 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:42:55 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:42:55 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:42:55 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:43:02 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:43:04 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:43:18 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 18:43:18 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 18:43:18 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:43:18 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 18:43:18 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 18:43:26 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Fri Jul 07 18:43:26 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Fri Jul 07 18:43:26 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Fri Jul 07 18:43:26 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:43:26 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Fri Jul 07 18:43:59 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 18:43:59 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 18:43:59 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 18:43:59 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 18:43:59 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:45:15 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:45:16 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:45:27 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:45:27 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:45:27 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:45:46 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:45:46 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:45:46 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:46:12 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:46:12 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:46:12 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:46:19 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:46:20 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:46:39 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Fri Jul 07 18:46:39 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Fri Jul 07 18:46:39 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Fri Jul 07 18:46:39 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Fri Jul 07 18:46:39 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:46:53 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Fri Jul 07 18:46:53 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:46:53 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Fri Jul 07 18:46:53 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Fri Jul 07 18:46:53 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Fri Jul 07 18:47:03 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Fri Jul 07 18:47:03 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Fri Jul 07 18:47:03 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:47:03 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Fri Jul 07 18:47:03 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Fri Jul 07 18:47:34 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:47:34 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:47:34 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:47:34 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:47:34 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:47:56 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:47:56 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:47:56 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:47:56 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:47:56 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:48:02 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 18:48:02 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 18:48:02 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 18:48:02 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 18:48:02 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:52:25 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:52:27 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:52:36 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:52:36 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:52:36 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:52:39 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:52:41 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:52:50 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 18:52:50 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 18:52:50 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 18:52:50 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:52:50 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 18:53:00 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:53:00 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:53:00 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:53:00 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:53:00 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 18:55:53 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:55:54 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:56:04 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 18:56:04 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 18:56:04 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:56:07 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:56:09 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:56:24 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 18:56:24 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:56:24 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 18:56:24 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 18:56:24 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Fri Jul 07 18:56:30 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Fri Jul 07 18:56:30 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Fri Jul 07 18:56:30 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Fri Jul 07 18:56:30 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:56:30 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Fri Jul 07 18:59:17 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:59:20 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:59:29 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:59:29 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 18:59:29 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 18:59:33 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 18:59:34 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:01:45 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:01:47 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:01:50 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:02:01 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:02:17 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:02:19 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:02:20 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:02:26 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:02:50 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:02:52 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:03:00 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:03:00 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:03:00 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:03:06 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:03:07 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:03:29 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 19:03:29 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 19:03:29 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 19:03:29 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 19:03:29 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:03:41 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:03:41 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:03:41 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:03:41 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:03:41 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:04:51 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:04:51 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:04:51 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:04:51 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:04:51 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:04:56 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:04:56 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:04:56 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:04:56 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:04:56 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:05:53 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:05:53 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:05:53 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:05:53 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:05:53 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:05:58 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:05:58 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:05:58 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:05:58 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:05:58 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:07:34 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:07:36 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:07:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:07:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:07:44 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:07:52 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:07:53 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:08:34 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:08:34 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:08:34 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:08:34 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:08:34 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:08:42 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 19:08:42 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 19:08:42 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 19:08:42 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 19:08:42 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:10:05 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:10:06 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:10:10 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:10:12 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:10:31 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:10:31 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:10:31 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:10:31 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:10:31 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:10:55 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:10:55 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:10:55 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:10:55 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:10:55 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:11:47 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:11:49 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:11:51 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:11:52 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:12:13 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 19:12:13 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 19:12:13 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:12:13 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 19:12:13 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 19:12:18 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:12:18 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:12:18 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:12:18 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:12:18 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:17:49 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:17:53 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:18:29 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:18:30 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:18:46 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:18:46 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:18:46 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:18:46 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:18:46 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:18:53 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:18:53 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:18:53 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:18:53 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:18:53 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:20:46 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:20:47 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:21:00 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:21:01 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:21:03 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:21:04 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:21:24 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:21:24 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:21:24 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:21:24 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:21:24 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:21:30 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:21:30 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:21:30 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:21:30 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:21:30 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:22:37 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:22:38 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:22:39 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:22:41 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:22:57 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:22:57 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:22:57 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:22:57 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:22:57 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:23:21 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:23:21 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:23:21 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:23:21 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:23:21 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:24:16 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:24:18 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:24:26 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:24:26 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:24:26 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:26:10 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:26:14 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:26:15 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:26:20 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:26:35 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:26:35 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:26:35 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:26:35 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:26:35 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:26:55 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:26:55 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:26:55 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:26:55 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:26:55 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:27:27 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 19:27:27 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 19:27:27 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 19:27:27 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Fri Jul 07 19:27:27 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:27:47 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:27:47 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:27:47 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:27:47 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:27:47 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:27:54 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 19:27:54 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 19:27:54 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:27:54 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 19:27:54 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Fri Jul 07 19:30:27 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:30:28 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:30:30 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:30:31 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:30:48 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:30:48 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:30:48 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:30:48 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:30:48 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Fri Jul 07 19:30:55 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:30:55 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:30:55 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:30:55 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:30:55 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:35:19 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:35:22 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:35:24 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:35:26 CEST 2017 - Client starting ... +LOGGER (Client1): Fri Jul 07 19:35:41 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:35:41 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:35:41 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:35:41 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Fri Jul 07 19:35:41 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:35:48 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:35:48 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Fri Jul 07 19:35:48 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:35:48 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Fri Jul 07 19:35:48 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 11:24:45 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:24:46 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:25:01 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 11:25:01 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 11:25:01 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 11:26:10 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:26:13 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:26:20 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 11:26:20 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 11:26:20 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 11:27:30 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:27:32 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:27:41 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 11:27:41 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 11:27:41 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 11:28:41 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:28:43 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:28:51 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:28:51 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:28:51 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 11:29:43 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:29:44 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:29:50 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:29:50 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:29:50 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 11:31:40 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:31:43 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:31:51 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:31:51 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:31:51 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 11:34:42 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:34:43 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:34:51 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:34:51 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:34:51 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 11:36:19 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:36:21 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:36:31 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:36:31 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:36:31 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 11:38:04 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:38:08 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:38:16 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:38:16 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:38:16 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 11:38:55 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:38:57 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:39:04 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:39:04 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:39:04 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 11:39:50 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:39:51 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:39:57 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:39:57 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:39:57 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 11:40:16 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:40:17 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:40:24 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 11:40:24 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 11:40:24 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 11:42:42 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:42:46 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:42:51 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:42:51 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 11:42:51 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:45:37 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:45:38 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:45:49 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:45:49 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:45:49 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 11:50:54 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:51:41 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:51:42 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:51:51 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:51:51 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:51:51 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 11:53:23 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:53:25 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:53:33 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:53:33 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:53:33 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 11:54:26 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:54:28 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:54:34 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:54:34 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 11:54:34 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 11:55:06 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:55:07 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:55:16 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 11:55:16 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 11:55:16 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 11:58:50 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:58:51 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 11:58:59 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 11:58:59 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 11:58:59 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 12:02:27 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:02:28 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:02:36 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:02:36 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:02:36 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:04:43 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:04:45 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:04:55 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:04:55 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:04:55 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:05:45 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:05:46 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:05:55 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:05:55 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:05:55 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:07:01 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:07:09 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:07:13 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:07:14 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:07:14 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:08:00 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:08:01 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:08:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:08:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:08:08 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:09:32 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:09:33 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:09:41 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:09:41 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:09:41 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:12:42 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:12:44 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:12:51 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:12:51 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:12:51 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:17:53 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:17:55 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:18:01 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:18:01 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:18:01 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:18:34 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:18:36 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:18:50 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:18:50 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:18:50 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:18:50 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:18:50 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:18:55 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 12:18:55 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 12:18:55 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 12:18:55 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:18:55 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 12:19:35 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:19:50 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:19:51 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:19:57 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:19:57 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:19:57 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:20:15 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:20:15 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:20:15 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:22:06 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:22:08 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:22:14 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:22:14 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:22:14 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:23:57 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:23:59 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:24:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:24:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:24:10 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:25:01 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:25:02 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:25:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:25:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:25:10 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:26:42 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:26:44 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:26:50 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:26:50 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:26:50 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:28:33 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:28:38 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:28:47 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 12:28:47 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 12:28:47 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:29:17 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:30:24 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:30:25 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:30:33 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:30:33 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:30:33 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:36:49 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:36:51 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:36:58 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:36:58 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:36:58 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:37:25 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 12:37:25 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:37:25 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 12:38:04 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:38:07 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:38:14 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 12:38:14 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:38:14 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 12:38:32 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:38:32 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:38:32 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:38:58 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 12:38:58 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:38:58 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 12:39:17 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:39:17 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:39:17 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:39:34 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:39:36 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:40:01 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 12:40:01 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 12:40:01 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 12:40:01 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:40:01 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 12:40:10 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 12:40:10 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 12:40:10 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 12:40:10 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 12:40:10 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:41:21 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:41:22 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:41:24 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:41:25 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:41:41 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 12:41:41 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:41:41 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 12:41:41 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 12:41:41 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 12:41:47 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Sun Jul 09 12:41:47 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Sun Jul 09 12:41:47 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Sun Jul 09 12:41:47 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:41:47 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Sun Jul 09 12:44:42 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:44:43 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:44:51 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 12:44:51 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:44:51 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 12:44:55 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:44:56 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:45:16 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Sun Jul 09 12:45:16 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Sun Jul 09 12:45:16 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Sun Jul 09 12:45:16 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Sun Jul 09 12:45:16 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:45:20 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Sun Jul 09 12:45:20 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Sun Jul 09 12:45:20 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Sun Jul 09 12:45:20 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:45:20 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Sun Jul 09 12:49:38 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:49:39 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:49:40 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:49:42 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:50:01 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 12:50:01 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 12:50:01 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:50:01 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 12:50:01 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 12:50:04 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 12:50:04 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:50:04 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 12:50:04 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 12:50:04 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 12:55:40 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:55:42 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:55:43 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:55:45 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:56:01 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:56:01 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:56:01 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:56:01 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:56:01 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:56:03 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 12:56:03 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:56:03 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 12:56:03 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 12:56:03 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 12:57:47 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:57:52 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:57:53 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:57:55 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 12:58:13 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:58:13 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:58:13 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:58:13 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 12:58:13 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:58:15 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 12:58:15 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Sun Jul 09 12:58:15 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 12:58:15 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 12:58:15 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 13:01:20 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:01:22 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:01:24 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:01:25 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:01:42 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:01:42 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:01:42 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:01:42 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:01:42 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:01:46 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 13:01:46 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:01:46 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 13:01:46 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 13:01:46 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Sun Jul 09 13:03:25 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:03:27 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:03:29 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:03:31 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:03:49 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 13:03:49 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:03:49 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 13:03:49 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 13:03:49 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 13:03:52 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 13:03:52 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 13:03:52 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:03:52 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 13:03:52 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 13:05:18 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:05:20 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:05:21 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:05:23 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:05:38 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:05:38 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:05:38 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:05:38 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:05:38 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:05:40 CEST 2017 - Invoked invitation with username=d|[] +LOGGER (Client1): Sun Jul 09 13:05:40 CEST 2017 - Invoked invitation with username=d|[] +LOGGER (Client1): Sun Jul 09 13:05:40 CEST 2017 - Invoked invitation with username=d|[] +LOGGER (Client1): Sun Jul 09 13:05:40 CEST 2017 - Invoked invitation with username=d|[] +LOGGER (Client1): Sun Jul 09 13:05:41 CEST 2017 - Invoked invitation with username=d|[] +LOGGER (Client1): Sun Jul 09 13:05:41 CEST 2017 - Invoked invitation with username=d|[] +LOGGER (Client1): Sun Jul 09 13:05:41 CEST 2017 - Invoked invitation with username=d|[] +LOGGER (Client1): Sun Jul 09 13:05:41 CEST 2017 - Invoked invitation with username=d|[] +LOGGER (Client1): Sun Jul 09 13:05:43 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Sun Jul 09 13:05:43 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Sun Jul 09 13:05:43 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:05:43 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Sun Jul 09 13:05:43 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Sun Jul 09 13:06:07 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:06:08 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:06:09 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:06:11 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:09:33 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:09:35 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:09:51 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:09:58 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:09:58 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:10:09 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:10:10 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:12:01 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:12:03 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:12:04 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:12:06 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:12:12 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:12:36 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Sun Jul 09 13:12:36 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Sun Jul 09 13:12:59 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:13:01 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:13:07 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:13:07 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:13:07 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:13:22 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:13:22 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:13:22 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:13:26 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:13:28 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:14:00 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:14:01 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:14:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:14:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:14:10 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:14:24 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:14:24 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:14:24 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:15:20 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:15:22 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:15:28 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:15:28 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:15:28 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:15:40 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:15:40 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:15:40 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:16:11 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:16:12 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:16:37 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:16:37 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:16:37 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:16:53 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:16:53 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:16:53 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:18:39 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:18:40 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:18:47 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:18:47 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:18:47 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:19:00 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:19:00 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:19:00 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:19:57 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:19:59 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:20:04 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:20:04 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:20:04 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:20:17 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:20:17 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:20:17 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:23:29 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:23:30 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:23:32 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:23:33 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:23:41 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:24:32 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:24:33 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:24:35 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:24:36 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:24:42 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:24:42 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:24:42 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:24:56 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:24:56 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:26:13 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:26:15 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:26:16 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:26:23 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:26:52 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:26:54 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:27:01 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:27:01 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:27:01 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:27:14 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:27:14 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:27:14 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:28:32 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:28:34 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:28:41 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:28:41 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:28:41 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:29:23 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:29:28 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:29:33 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:29:33 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:29:33 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:29:47 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:29:47 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 13:29:47 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 13:31:11 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:31:13 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 13:31:18 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:31:18 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 13:31:18 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 15:26:46 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:26:48 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:26:55 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 15:26:55 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 15:26:55 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 15:28:30 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:28:35 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:28:40 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 15:28:40 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 15:28:40 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 15:29:21 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:29:23 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:29:29 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 15:29:29 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 15:29:29 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 15:30:14 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:30:18 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:30:22 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 15:30:22 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 15:30:22 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 15:31:46 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:31:48 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:31:53 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 15:31:53 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 15:31:53 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 15:32:50 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:32:51 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:33:04 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 15:33:04 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 15:33:04 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 15:35:42 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:35:43 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:35:49 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 15:35:49 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 15:35:49 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 15:44:25 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:44:27 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:44:35 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 15:44:35 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 15:44:35 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 15:44:53 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 15:44:53 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 15:44:53 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 15:54:24 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:54:26 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:54:32 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 15:54:32 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 15:54:32 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 15:55:54 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:55:55 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:56:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 15:56:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 15:56:02 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 15:57:14 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:57:18 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:57:22 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 15:57:22 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 15:57:22 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 15:58:35 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:58:36 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 15:58:42 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 15:58:42 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 15:58:42 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 16:00:14 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:00:15 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:00:22 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:00:22 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:00:22 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:01:09 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:01:15 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:01:26 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 16:01:26 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:01:26 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 16:02:19 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:02:22 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:02:29 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:02:29 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:02:29 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:03:29 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:03:31 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:03:38 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:03:38 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:03:38 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:04:56 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:04:58 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:05:06 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 16:05:06 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:05:06 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 16:07:24 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:07:26 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:07:33 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:07:33 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:07:33 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:08:08 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:08:13 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:08:17 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:08:17 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:08:17 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:08:55 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:08:58 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:09:04 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:09:04 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:09:04 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:10:04 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:10:05 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:10:11 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:10:11 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:10:11 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:12:45 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:12:46 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:12:52 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:12:52 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:12:52 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:14:12 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:14:15 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:14:21 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:14:21 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:14:21 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:15:36 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:15:40 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:15:45 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:15:45 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:15:45 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:16:43 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:16:49 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:16:54 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:16:54 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:16:54 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:33:03 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:33:05 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:33:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:33:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:33:10 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:33:58 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:33:59 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:34:07 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:34:07 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:34:07 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:38:24 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:38:25 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:38:31 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:38:31 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:38:31 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:44:02 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:44:04 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:44:09 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:44:09 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:44:09 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:44:23 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 16:44:23 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:44:23 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jul 09 16:44:37 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:44:38 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jul 09 16:44:51 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 16:44:51 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 16:44:51 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 16:44:51 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:44:51 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Sun Jul 09 16:44:54 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 16:44:54 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 16:44:54 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 16:44:54 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Sun Jul 09 16:44:54 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:45:13 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:45:13 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:45:13 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jul 09 16:45:13 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jul 09 16:45:13 CEST 2017 - Invoked invitation with username=b|[a] +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 - Invoked invitation with username=c|[d] +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] diff --git a/server.log b/server.log index 77ae676..192565e 100644 --- a/server.log +++ b/server.log @@ -7342,3 +7342,1162 @@ LOGGER (Server): Fri Jul 07 15:47:07 CEST 2017 - Invoked login with username=c A LOGGER (Server): Fri Jul 07 15:47:07 CEST 2017 - Login successfull LOGGER (Server): Fri Jul 07 15:47:10 CEST 2017 - Invoked login with username=b AND password=b LOGGER (Server): Fri Jul 07 15:47:10 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:08:17 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 18:08:18 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 18:08:18 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 18:08:18 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 18:08:22 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 18:08:22 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:08:25 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 18:08:25 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:09:34 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 18:09:34 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 18:09:34 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 18:09:34 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 18:09:39 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 18:09:39 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:09:41 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 18:09:41 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:14:52 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 18:14:52 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 18:14:52 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 18:14:52 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 18:15:00 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 18:15:00 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:15:02 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 18:15:02 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:16:27 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 18:16:28 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 18:16:28 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 18:16:28 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 18:16:33 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 18:16:33 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:16:38 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 18:16:38 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:18:23 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 18:18:23 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 18:18:23 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 18:18:23 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 18:18:31 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 18:18:31 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:18:34 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 18:18:34 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:19:57 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 18:19:57 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 18:19:57 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 18:19:57 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 18:20:02 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 18:20:02 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:20:05 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 18:20:05 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:23:46 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 18:23:46 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 18:23:46 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 18:23:46 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 18:23:55 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 18:23:55 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:23:58 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 18:23:58 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:26:52 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 18:26:52 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 18:26:52 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 18:26:52 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 18:26:59 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 18:26:59 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 18:27:12 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 18:27:13 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 18:27:13 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 18:27:13 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 18:27:17 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 18:27:17 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:27:20 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 18:27:20 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:29:00 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 18:29:00 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:29:02 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Fri Jul 07 18:29:02 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:29:05 CEST 2017 - Invoked register with username=e AND password=e +LOGGER (Server): Fri Jul 07 18:29:05 CEST 2017 - Registration successfull +LOGGER (Server): Fri Jul 07 18:29:07 CEST 2017 - Invoked login with username=e AND password=e +LOGGER (Server): Fri Jul 07 18:29:07 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:29:09 CEST 2017 - Invoked login with username=f AND password=f +LOGGER (Server): Fri Jul 07 18:29:09 CEST 2017 - Login unsuccessfull +LOGGER (Server): Fri Jul 07 18:29:12 CEST 2017 - Invoked register with username=f AND password=f +LOGGER (Server): Fri Jul 07 18:29:12 CEST 2017 - Registration successfull +LOGGER (Server): Fri Jul 07 18:29:13 CEST 2017 - Invoked login with username=f AND password=f +LOGGER (Server): Fri Jul 07 18:29:13 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:32:52 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 18:32:53 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 18:32:53 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 18:32:53 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 18:33:02 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 18:33:02 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:33:06 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 18:33:06 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:33:08 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 18:33:08 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:33:12 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Fri Jul 07 18:33:12 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:34:43 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 18:34:43 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 18:34:44 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 18:34:44 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 18:34:48 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 18:34:48 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:34:50 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 18:34:50 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:43:06 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 18:43:06 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:43:14 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Fri Jul 07 18:43:14 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:45:13 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 18:45:13 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 18:45:13 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 18:45:13 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 18:45:18 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 18:45:18 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:45:23 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 18:45:23 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:46:32 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 18:46:32 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:46:33 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Fri Jul 07 18:46:33 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:52:23 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 18:52:23 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 18:52:23 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 18:52:23 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 18:52:28 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 18:52:28 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:52:31 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 18:52:31 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:52:46 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 18:52:46 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:52:48 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Fri Jul 07 18:52:48 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:55:51 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 18:55:51 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 18:55:52 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 18:55:52 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 18:55:56 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 18:55:56 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:56:00 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 18:56:00 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:56:15 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 18:56:15 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:56:17 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Fri Jul 07 18:56:17 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:59:14 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 18:59:14 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 18:59:14 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 18:59:14 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 18:59:21 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 18:59:21 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:59:24 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 18:59:24 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:59:40 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 18:59:40 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 18:59:41 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Fri Jul 07 18:59:41 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:01:44 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 19:01:44 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 19:01:44 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 19:01:44 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 19:01:52 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 19:01:52 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:01:56 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 19:01:56 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:02:14 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 19:02:14 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 19:02:14 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 19:02:14 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 19:02:22 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 19:02:22 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:02:24 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 19:02:24 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:02:47 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 19:02:48 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 19:02:48 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 19:02:48 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 19:02:54 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 19:02:54 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:02:57 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 19:02:57 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:03:14 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 19:03:14 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:03:15 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Fri Jul 07 19:03:15 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:07:32 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 19:07:32 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 19:07:32 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 19:07:32 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 19:07:38 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 19:07:38 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:07:40 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 19:07:40 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:08:01 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 19:08:01 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:08:02 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Fri Jul 07 19:08:02 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:09:51 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 19:09:52 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 19:09:52 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 19:09:52 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 19:10:03 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 19:10:03 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 19:10:03 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 19:10:03 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 19:10:13 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 19:10:13 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:10:19 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 19:10:19 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:10:21 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 19:10:21 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:10:25 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Fri Jul 07 19:10:25 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:11:45 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 19:11:45 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 19:11:45 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 19:11:45 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 19:11:55 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 19:11:55 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:11:59 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 19:11:59 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:12:02 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 19:12:02 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:12:09 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Fri Jul 07 19:12:09 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:17:42 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 19:17:42 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 19:17:42 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 19:17:42 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 19:18:20 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 19:18:21 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:18:23 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 19:18:23 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:18:37 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 19:18:37 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:18:42 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Fri Jul 07 19:18:42 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:20:44 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 19:20:44 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 19:20:44 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 19:20:44 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 19:20:57 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 19:20:57 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 19:20:57 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 19:20:57 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 19:21:09 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 19:21:09 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:21:13 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 19:21:13 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:21:15 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 19:21:15 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:21:18 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Fri Jul 07 19:21:18 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:22:34 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 19:22:35 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 19:22:35 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 19:22:35 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 19:22:42 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 19:22:42 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:22:45 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 19:22:45 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:22:50 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 19:22:50 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:22:52 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Fri Jul 07 19:22:52 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:24:13 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 19:24:14 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 19:24:14 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 19:24:14 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 19:24:20 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 19:24:20 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:24:23 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 19:24:23 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:26:08 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 19:26:08 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 19:26:08 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 19:26:08 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 19:26:21 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 19:26:21 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:26:24 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 19:26:24 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:26:28 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 19:26:28 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:26:31 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Fri Jul 07 19:26:31 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:30:25 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 19:30:25 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 19:30:25 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 19:30:25 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 19:30:33 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 19:30:33 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:30:35 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 19:30:35 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:30:39 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 19:30:39 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:30:44 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Fri Jul 07 19:30:44 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:35:15 CEST 2017 - Server starting ... +LOGGER (Server): Fri Jul 07 19:35:15 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Fri Jul 07 19:35:15 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Fri Jul 07 19:35:15 CEST 2017 - Server started +LOGGER (Server): Fri Jul 07 19:35:29 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Fri Jul 07 19:35:29 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:35:31 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Fri Jul 07 19:35:31 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:35:35 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Fri Jul 07 19:35:35 CEST 2017 - Login successfull +LOGGER (Server): Fri Jul 07 19:35:38 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Fri Jul 07 19:35:38 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:24:41 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 11:24:41 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 11:24:41 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 11:24:41 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 11:24:54 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 11:24:54 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:24:58 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 11:24:58 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:26:07 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 11:26:07 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 11:26:07 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 11:26:07 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 11:26:14 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 11:26:14 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:26:16 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 11:26:16 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:27:29 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 11:27:29 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 11:27:29 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 11:27:29 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 11:27:33 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 11:27:33 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:27:35 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 11:27:35 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:28:40 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 11:28:40 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 11:28:40 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 11:28:40 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 11:28:44 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 11:28:44 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:28:48 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 11:28:48 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:29:41 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 11:29:41 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 11:29:41 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 11:29:41 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 11:29:45 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 11:29:45 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:29:48 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 11:29:48 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:31:34 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 11:31:34 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 11:31:34 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 11:31:35 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 11:31:45 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 11:31:45 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:31:48 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 11:31:48 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:34:37 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 11:34:37 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 11:34:37 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 11:34:37 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 11:34:39 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 11:34:39 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 11:34:39 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 11:34:39 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 11:34:46 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 11:34:46 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:34:48 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 11:34:48 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:36:17 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 11:36:17 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 11:36:17 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 11:36:17 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 11:36:24 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 11:36:24 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:36:28 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 11:36:28 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:38:02 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 11:38:02 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 11:38:02 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 11:38:02 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 11:38:09 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 11:38:09 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:38:14 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 11:38:14 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:38:53 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 11:38:53 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 11:38:53 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 11:38:53 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 11:38:58 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 11:38:58 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:39:02 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 11:39:02 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:39:49 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 11:39:49 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 11:39:49 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 11:39:49 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 11:39:53 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 11:39:53 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:39:55 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 11:39:55 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:40:14 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 11:40:14 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 11:40:14 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 11:40:14 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 11:40:18 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 11:40:18 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:40:20 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 11:40:20 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:42:41 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 11:42:41 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 11:42:41 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 11:42:41 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 11:42:44 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 11:42:44 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:42:48 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 11:42:48 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:45:33 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 11:45:33 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 11:45:33 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 11:45:42 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 11:45:42 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:45:47 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 11:45:47 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:50:53 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 11:50:53 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 11:50:53 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 11:51:18 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 11:51:18 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 11:51:19 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 11:51:38 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 11:51:38 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 11:51:38 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 11:51:38 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 11:51:44 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 11:51:44 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:51:48 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 11:51:48 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:53:21 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 11:53:21 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 11:53:21 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 11:53:21 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 11:53:27 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 11:53:27 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:53:30 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 11:53:30 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:54:10 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 11:54:10 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 11:54:10 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 11:54:10 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 11:54:24 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 11:54:24 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 11:54:24 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 11:54:24 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 11:54:29 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 11:54:29 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:54:32 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 11:54:32 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:55:02 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 11:55:02 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 11:55:02 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 11:55:02 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 11:55:08 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 11:55:08 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:55:12 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 11:55:12 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:58:47 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 11:58:47 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 11:58:47 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 11:58:47 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 11:58:53 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 11:58:53 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 11:58:56 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 11:58:56 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:02:24 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:02:24 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:02:24 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:02:24 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:02:29 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:02:29 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:02:33 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 12:02:33 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:04:40 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:04:40 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:04:40 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:04:40 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:04:49 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 12:04:49 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:04:52 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:04:52 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:05:43 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:05:43 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:05:43 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:05:43 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:05:47 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:05:47 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:05:53 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 12:05:53 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:06:59 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:06:59 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:06:59 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:06:59 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:07:03 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:07:03 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:07:11 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 12:07:11 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:07:57 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:07:58 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:07:58 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:07:58 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:08:03 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:08:03 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:08:06 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 12:08:06 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:09:29 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:09:29 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:09:29 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:09:29 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:09:35 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:09:35 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:09:37 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 12:09:37 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:12:39 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:12:39 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:12:39 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:12:39 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:12:45 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:12:46 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:12:48 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 12:12:48 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:17:50 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:17:50 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:17:50 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:17:50 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:17:56 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:17:56 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:17:59 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 12:17:59 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:18:39 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jul 09 12:18:39 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:18:41 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Sun Jul 09 12:18:41 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:19:47 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:19:47 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:19:47 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:19:47 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:19:52 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:19:52 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:19:54 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 12:19:54 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:22:03 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:22:03 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:22:03 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:22:03 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:22:09 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:22:09 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:22:12 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 12:22:12 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:23:51 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:23:52 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:23:52 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:23:52 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:24:02 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:24:02 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:24:06 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 12:24:06 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:24:44 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:24:44 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:24:44 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:24:44 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:24:53 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:24:53 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:24:53 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:24:53 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:24:57 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:24:57 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:24:57 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:24:57 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:25:03 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:25:03 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:25:08 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 12:25:08 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:26:38 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:26:38 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:26:38 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:26:38 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:26:45 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:26:45 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:26:48 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 12:26:48 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:28:30 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:28:30 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:28:30 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:28:30 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:28:36 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:28:36 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:28:40 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 12:28:40 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:30:08 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:30:08 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:30:08 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:30:08 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:30:21 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:30:21 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:30:21 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:30:21 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:30:26 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:30:26 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:30:31 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 12:30:31 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:36:45 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:36:45 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:36:45 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:36:45 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:36:52 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:36:52 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:36:56 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 12:36:56 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:38:02 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:38:02 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:38:02 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:38:02 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:38:08 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:38:08 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:38:10 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 12:38:10 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:39:37 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:39:37 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:39:39 CEST 2017 - Invoked logout with username=a AND token=92e1jalj2k4pqrnqn4acsknt6e +LOGGER (Server): Sun Jul 09 12:39:39 CEST 2017 - Logout successfull +LOGGER (Server): Sun Jul 09 12:39:39 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Sun Jul 09 12:39:42 CEST 2017 - Invoked login with username=c AND password=bc +LOGGER (Server): Sun Jul 09 12:39:42 CEST 2017 - Login unsuccessfull +LOGGER (Server): Sun Jul 09 12:39:45 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jul 09 12:39:45 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:39:48 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Sun Jul 09 12:39:48 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:39:51 CEST 2017 - Invoked logout with username=a AND token=25bbtqlj94s3cn4v8dhrd9mtj3 +LOGGER (Server): Sun Jul 09 12:39:51 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Sun Jul 09 12:39:53 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:39:53 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:41:17 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:41:17 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:41:17 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:41:17 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:41:26 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:41:26 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:41:31 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 12:41:31 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:41:34 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jul 09 12:41:34 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:41:38 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Sun Jul 09 12:41:38 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:44:40 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:44:40 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:44:40 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:44:40 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:44:44 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:44:44 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:44:47 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 12:44:47 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:44:59 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jul 09 12:44:59 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:45:01 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Sun Jul 09 12:45:01 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:49:36 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:49:36 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:49:36 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:49:36 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:49:43 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:49:43 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:49:47 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 12:49:47 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:49:50 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jul 09 12:49:50 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:49:54 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Sun Jul 09 12:49:54 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:55:38 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:55:38 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:55:38 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:55:38 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:55:46 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:55:46 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:55:51 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 12:55:51 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:55:55 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jul 09 12:55:55 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:55:58 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Sun Jul 09 12:55:58 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:57:46 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 12:57:46 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 12:57:46 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 12:57:46 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 12:57:56 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 12:57:56 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:57:59 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 12:57:59 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:58:03 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jul 09 12:58:03 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 12:58:08 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Sun Jul 09 12:58:08 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:01:18 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 13:01:18 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 13:01:18 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 13:01:18 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 13:01:26 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 13:01:26 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:01:32 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 13:01:32 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:01:34 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jul 09 13:01:34 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:01:36 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Sun Jul 09 13:01:36 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:03:22 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 13:03:22 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 13:03:23 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 13:03:23 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 13:03:32 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 13:03:32 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:03:36 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 13:03:36 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:03:39 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jul 09 13:03:39 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:03:46 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Sun Jul 09 13:03:46 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:05:16 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 13:05:16 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 13:05:17 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 13:05:17 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 13:05:24 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 13:05:24 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:05:27 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 13:05:27 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:05:29 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jul 09 13:05:29 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:05:32 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Sun Jul 09 13:05:32 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:06:12 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 13:06:12 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:06:15 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 13:06:15 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:06:18 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jul 09 13:06:18 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:06:21 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Sun Jul 09 13:06:21 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:06:44 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 13:06:44 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 13:06:44 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 13:06:44 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 13:09:30 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 13:09:31 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 13:09:31 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 13:09:31 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 13:09:39 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 13:09:39 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:09:40 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 13:09:40 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:09:45 CEST 2017 - Invoked logout with username=b AND token=6u29vrs2eqrsj6bcj3pgsu5mp6 +LOGGER (Server): Sun Jul 09 13:09:45 CEST 2017 - Logout successfull +LOGGER (Server): Sun Jul 09 13:09:45 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Sun Jul 09 13:09:53 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 13:09:53 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:10:04 CEST 2017 - Invoked logout with username=b AND token=pu7cu00l5eb3bgkrp4viovigrr +LOGGER (Server): Sun Jul 09 13:10:04 CEST 2017 - Logout successfull +LOGGER (Server): Sun Jul 09 13:10:04 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Sun Jul 09 13:10:06 CEST 2017 - Invoked logout with username=a AND token=tfihh5f3e7a0krm2flp9l05fhh +LOGGER (Server): Sun Jul 09 13:10:06 CEST 2017 - Logout successfull +LOGGER (Server): Sun Jul 09 13:10:06 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Sun Jul 09 13:10:13 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 13:10:13 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:10:14 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 13:10:14 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:10:55 CEST 2017 - Invoked logout with username=a AND token=a5itf2iq3mnj50hpgkbmv2likl +LOGGER (Server): Sun Jul 09 13:10:55 CEST 2017 - Logout successfull +LOGGER (Server): Sun Jul 09 13:10:55 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Sun Jul 09 13:11:59 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 13:12:00 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 13:12:00 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 13:12:00 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 13:12:07 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 13:12:07 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:12:10 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 13:12:10 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:12:20 CEST 2017 - Invoked logout with username=a AND token=a0s5rvag47ue9pic2ug5qlan79 +LOGGER (Server): Sun Jul 09 13:12:20 CEST 2017 - Logout successfull +LOGGER (Server): Sun Jul 09 13:12:20 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Sun Jul 09 13:12:23 CEST 2017 - Invoked login with username= AND password= +LOGGER (Server): Sun Jul 09 13:12:23 CEST 2017 - Login unsuccessfull +LOGGER (Server): Sun Jul 09 13:12:25 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 13:12:25 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:12:29 CEST 2017 - Invoked logout with username=b AND token=f6t7ghnuvophmuatb306kbujud +LOGGER (Server): Sun Jul 09 13:12:29 CEST 2017 - Logout successfull +LOGGER (Server): Sun Jul 09 13:12:29 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Sun Jul 09 13:12:32 CEST 2017 - Invoked login with username=c AND password= +LOGGER (Server): Sun Jul 09 13:12:32 CEST 2017 - Login unsuccessfull +LOGGER (Server): Sun Jul 09 13:12:34 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jul 09 13:12:34 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:12:49 CEST 2017 - Invoked logout with username=a AND token=4sr72mnc8ttt3fk5bfgq17r7oq +LOGGER (Server): Sun Jul 09 13:12:49 CEST 2017 - Logout successfull +LOGGER (Server): Sun Jul 09 13:12:49 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Sun Jul 09 13:12:49 CEST 2017 - Invoked logout with username=c AND token=v7n4n1mbr64ribi64d38m4uam2 +LOGGER (Server): Sun Jul 09 13:12:49 CEST 2017 - Logout successfull +LOGGER (Server): Sun Jul 09 13:12:49 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Sun Jul 09 13:12:57 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 13:12:58 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 13:12:58 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 13:12:58 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 13:13:02 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 13:13:02 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:13:04 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 13:13:04 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:13:47 CEST 2017 - Invoked logout with username=b AND token=3bv1jnbqim5nrsphe2hlpl5c2a +LOGGER (Server): Sun Jul 09 13:13:47 CEST 2017 - Logout successfull +LOGGER (Server): Sun Jul 09 13:13:47 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Sun Jul 09 13:13:58 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 13:13:58 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 13:13:58 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 13:13:58 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 13:14:03 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 13:14:03 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:14:08 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 13:14:08 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:15:18 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 13:15:18 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 13:15:18 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 13:15:18 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 13:15:23 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 13:15:23 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:15:24 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 13:15:24 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:16:07 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 13:16:07 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 13:16:07 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 13:16:07 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 13:16:13 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 13:16:13 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:16:15 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 13:16:15 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:18:37 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 13:18:37 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 13:18:37 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 13:18:37 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 13:18:41 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 13:18:41 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:18:44 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 13:18:44 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:19:55 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 13:19:56 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 13:19:56 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 13:19:56 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 13:20:00 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 13:20:00 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:20:02 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 13:20:02 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:23:26 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 13:23:26 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 13:23:26 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 13:23:26 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 13:23:34 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 13:23:34 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:23:37 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 13:23:37 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:23:54 CEST 2017 - Invoked logout with username=a AND token=ufc543c3382scgolbdpto61q7o +LOGGER (Server): Sun Jul 09 13:23:54 CEST 2017 - Logout successfull +LOGGER (Server): Sun Jul 09 13:23:54 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Sun Jul 09 13:23:56 CEST 2017 - Invoked logout with username=b AND token=blbr8hg50p7mc6g9jj727772n1 +LOGGER (Server): Sun Jul 09 13:23:56 CEST 2017 - Logout successfull +LOGGER (Server): Sun Jul 09 13:23:56 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Sun Jul 09 13:24:31 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 13:24:31 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 13:24:31 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 13:24:31 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 13:24:37 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 13:24:37 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:24:39 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 13:24:39 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:26:11 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 13:26:12 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 13:26:12 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 13:26:12 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 13:26:17 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 13:26:17 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:26:19 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 13:26:19 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:26:50 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 13:26:50 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 13:26:50 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 13:26:50 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 13:26:55 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 13:26:55 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:26:58 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 13:26:58 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:28:31 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 13:28:31 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 13:28:31 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 13:28:31 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 13:28:35 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 13:28:35 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:28:37 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 13:28:37 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:29:22 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 13:29:22 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 13:29:22 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 13:29:22 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 13:29:26 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 13:29:26 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:29:29 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 13:29:29 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:31:10 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 13:31:10 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 13:31:10 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 13:31:10 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 13:31:14 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 13:31:14 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 13:31:16 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 13:31:16 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:26:25 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 15:26:26 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 15:26:26 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 15:26:26 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 15:26:42 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 15:26:43 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 15:26:43 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 15:26:43 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 15:26:51 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 15:26:51 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:26:53 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 15:26:53 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:28:28 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 15:28:28 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 15:28:28 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 15:28:28 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 15:28:32 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 15:28:32 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:28:36 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 15:28:36 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:29:19 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 15:29:19 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 15:29:19 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 15:29:19 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 15:29:24 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 15:29:24 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:29:27 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 15:29:27 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:30:11 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 15:30:11 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 15:30:11 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 15:30:11 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 15:30:15 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 15:30:15 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:30:19 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 15:30:19 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:31:43 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 15:31:43 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 15:31:44 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 15:31:44 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 15:31:49 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 15:31:49 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:31:51 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 15:31:51 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:32:48 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 15:32:48 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 15:32:48 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 15:32:48 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 15:32:53 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 15:32:53 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:32:59 CEST 2017 - Invoked login with username=b AND password= +LOGGER (Server): Sun Jul 09 15:32:59 CEST 2017 - Login unsuccessfull +LOGGER (Server): Sun Jul 09 15:33:01 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 15:33:01 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:35:40 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 15:35:40 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 15:35:40 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 15:35:40 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 15:35:44 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 15:35:44 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:35:46 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 15:35:46 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:44:24 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 15:44:24 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 15:44:24 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 15:44:24 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 15:44:28 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 15:44:28 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:44:32 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 15:44:32 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:54:21 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 15:54:22 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 15:54:22 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 15:54:22 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 15:54:27 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 15:54:27 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:54:29 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 15:54:29 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:55:52 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 15:55:52 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 15:55:52 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 15:55:52 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 15:55:57 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 15:55:57 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:55:59 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 15:55:59 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:57:12 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 15:57:12 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 15:57:12 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 15:57:12 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 15:57:15 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 15:57:15 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:57:19 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 15:57:19 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:58:33 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 15:58:33 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 15:58:33 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 15:58:33 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 15:58:37 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 15:58:37 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 15:58:39 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 15:58:39 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:00:12 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 16:00:12 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 16:00:12 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 16:00:12 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 16:00:17 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 16:00:17 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:00:20 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 16:00:20 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:01:05 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 16:01:05 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 16:01:05 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 16:01:05 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 16:01:16 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 16:01:16 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:01:22 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 16:01:22 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:02:17 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 16:02:17 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 16:02:17 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 16:02:17 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 16:02:23 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 16:02:23 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:02:27 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 16:02:27 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:03:26 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 16:03:26 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 16:03:26 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 16:03:26 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 16:03:32 CEST 2017 - Invoked login with username=a AND password= +LOGGER (Server): Sun Jul 09 16:03:32 CEST 2017 - Login unsuccessfull +LOGGER (Server): Sun Jul 09 16:03:33 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 16:03:33 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:03:36 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 16:03:36 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:04:53 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 16:04:54 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 16:04:54 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 16:04:54 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 16:04:59 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 16:04:59 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:05:03 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 16:05:03 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:07:21 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 16:07:22 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 16:07:22 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 16:07:22 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 16:07:28 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 16:07:28 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:07:31 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 16:07:31 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:08:06 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 16:08:06 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 16:08:06 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 16:08:06 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 16:08:10 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 16:08:10 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:08:15 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 16:08:15 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:08:53 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 16:08:53 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 16:08:53 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 16:08:53 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 16:08:59 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 16:08:59 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:09:01 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 16:09:01 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:10:01 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 16:10:01 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 16:10:01 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 16:10:01 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 16:10:06 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 16:10:06 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:10:08 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 16:10:08 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:12:43 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 16:12:43 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 16:12:43 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 16:12:43 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 16:12:47 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 16:12:47 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:12:49 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 16:12:49 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:14:10 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 16:14:10 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 16:14:10 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 16:14:10 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 16:14:16 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 16:14:16 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:14:19 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 16:14:19 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:15:34 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 16:15:35 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 16:15:35 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 16:15:35 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 16:15:38 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 16:15:38 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:15:42 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 16:15:42 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:16:40 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 16:16:40 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 16:16:40 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 16:16:40 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 16:16:47 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 16:16:47 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:16:50 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 16:16:50 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:33:01 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 16:33:01 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 16:33:01 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 16:33:02 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 16:33:06 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 16:33:06 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:33:08 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 16:33:08 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:33:56 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 16:33:56 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 16:33:56 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 16:33:56 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 16:34:00 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 16:34:00 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:34:05 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 16:34:05 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:38:22 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 16:38:22 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 16:38:22 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 16:38:22 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 16:38:26 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 16:38:26 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:38:29 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 16:38:29 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:43:59 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jul 09 16:43:59 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jul 09 16:43:59 CEST 2017 - Server started +LOGGER (Server): Sun Jul 09 16:43:59 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Sun Jul 09 16:44:05 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jul 09 16:44:05 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:44:07 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jul 09 16:44:07 CEST 2017 - Login successfull +LOGGER (Server): Sun Jul 09 16:44:43 CEST 2017 - Invoked login with username=c AND password=c +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 From 6b915932aeba694cba516b30bf943b6f23a743ce Mon Sep 17 00:00:00 2001 From: Lorenzo Iovino Date: Mon, 10 Jul 2017 21:34:37 +0200 Subject: [PATCH 04/25] 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 From dc206c0bb01eb4a910819df9520f420c9db2c26a Mon Sep 17 00:00:00 2001 From: Lorenzo Iovino Date: Mon, 10 Jul 2017 23:02:02 +0200 Subject: [PATCH 05/25] sUPER UP --- .idea/workspace.xml | 652 ++++++++------- Client/src/com/texttwist/client/App.java | 15 - .../client/controllers/MenuController.java | 5 +- .../src/com/texttwist/client/models/Game.java | 22 + .../com/texttwist/client/pages/MenuPage.java | 2 +- .../client/services/AuthService.java | 21 +- .../client/services/NotificationClient.java | 10 +- .../texttwist/client/tasks/WaitForScore.java | 8 +- Commons/src/interfaces/IAuth.java | 2 +- Commons/src/models/Session.java | 3 + .../com/texttwist/server/components/Auth.java | 8 +- .../server/components/NotificationServer.java | 11 +- .../server/components/SessionsManager.java | 2 +- client_1.log | 757 ++++++++++++++++++ server.log | 354 ++++++++ 15 files changed, 1540 insertions(+), 332 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index c57c315..41df94e 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,28 +1,22 @@ - + - - - - - - - - - + + + + + + + + + - - - - - - @@ -35,7 +29,7 @@ - + com.texttwist.client.* @@ -45,31 +39,83 @@ - - + + - - + + + + + + + + + + + + + + - - + + - - + + - - + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -78,68 +124,18 @@ - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - + @@ -156,36 +152,36 @@ - TIMEO - TIMEOU - TIMEOUT FI - TIMEOUT FIN - TIMEOUT FINI - TIMEOUT FINITO - H - HIGHSCO - HIGHSCORE - HIGHSCORES - t - 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 + Clientinter + r + regis + registerfo + registerfor + registerforco + registerforca + registerforcal + registerforcall + logout + ca + cal + call + callbackObj + c + callba + callback + callbackOn + callbackO + callbackOb + l + notificationcl + logo + n + new G + new Ga + new Game + . + .clos + .close @@ -199,8 +195,6 @@ @@ -613,6 +609,32 @@ - - - + + + + + + + + + + + - - - - + + - - - - - - - - @@ -1296,7 +1343,7 @@ - @@ -1305,24 +1352,6 @@ - - - - - - - - - - - - - - - - - - @@ -1330,14 +1359,6 @@ - - - - - - - - @@ -1346,22 +1367,6 @@ - - - - - - - - - - - - - - - - @@ -1427,21 +1432,6 @@ - - - - - - - - - - - - - - - @@ -1450,14 +1440,6 @@ - - - - - - - - @@ -1467,14 +1449,6 @@ - - - - - - - - @@ -1482,30 +1456,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - @@ -1522,22 +1472,6 @@ - - - - - - - - - - - - - - - - @@ -1575,22 +1509,6 @@ - - - - - - - - - - - - - - - - @@ -1599,29 +1517,13 @@ - - - - - - - - - - - - - - - - - - + + @@ -1666,42 +1568,188 @@ - + - - + + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Client/src/com/texttwist/client/App.java b/Client/src/com/texttwist/client/App.java index ec3060a..d8f6332 100644 --- a/Client/src/com/texttwist/client/App.java +++ b/Client/src/com/texttwist/client/App.java @@ -45,21 +45,6 @@ public class App extends JFrame { Logger logger = new Logger(new File("./client_"+id+".log"), "Client"+id); Logger.write("Client starting ..."); - try { - Registry registry = LocateRegistry.getRegistry(Config.NotificationServerStubPort); - INotificationServer server = (INotificationServer) registry.lookup(Config.NotificationServerName); - - /* si registra per la callback */ - System.out.println("Registering for callback"); - INotificationClient callbackObj = new NotificationClient(); - INotificationClient stub = (INotificationClient) UnicastRemoteObject.exportObject(callbackObj, 0); - - server.registerForCallback(stub); - } catch (RemoteException e) { - e.printStackTrace(); - } catch (NotBoundException e) { - e.printStackTrace(); - } //Init models game = new Game(); diff --git a/Client/src/com/texttwist/client/controllers/MenuController.java b/Client/src/com/texttwist/client/controllers/MenuController.java index 6848a77..e1c0602 100644 --- a/Client/src/com/texttwist/client/controllers/MenuController.java +++ b/Client/src/com/texttwist/client/controllers/MenuController.java @@ -1,6 +1,7 @@ package com.texttwist.client.controllers; import com.texttwist.client.App; +import interfaces.INotificationClient; import models.Response; import java.net.MalformedURLException; @@ -12,8 +13,8 @@ import java.rmi.RemoteException; */ public class MenuController { - public Response logout(String userName) throws RemoteException, NotBoundException, MalformedURLException { - Response res = App.authService.logout(userName); + public Response logout(String userName, INotificationClient stub) throws RemoteException, NotBoundException, MalformedURLException { + Response res = App.authService.logout(userName, stub); if (res.code == 200){ App.session = null; } diff --git a/Client/src/com/texttwist/client/models/Game.java b/Client/src/com/texttwist/client/models/Game.java index 92db12a..1f1245a 100644 --- a/Client/src/com/texttwist/client/models/Game.java +++ b/Client/src/com/texttwist/client/models/Game.java @@ -4,9 +4,12 @@ import com.texttwist.client.App; import com.texttwist.client.pages.GamePage; import com.texttwist.client.pages.MenuPage; import com.texttwist.client.pages.Page; +import com.texttwist.client.services.NotificationClient; import com.texttwist.client.tasks.InvitePlayers; import com.texttwist.client.ui.TTDialog; import constants.Config; +import interfaces.INotificationClient; +import interfaces.INotificationServer; import javafx.util.Pair; import models.Message; @@ -17,6 +20,11 @@ import java.net.InetSocketAddress; import java.net.MulticastSocket; import java.nio.ByteBuffer; import java.nio.channels.SocketChannel; +import java.rmi.NotBoundException; +import java.rmi.RemoteException; +import java.rmi.registry.LocateRegistry; +import java.rmi.registry.Registry; +import java.rmi.server.UnicastRemoteObject; import java.util.concurrent.*; /** @@ -30,12 +38,26 @@ public class Game { public DefaultListModel words = new DefaultListModel(); public DefaultListModel letters = new DefaultListModel(); public DefaultListModel> ranks = new DefaultListModel<>(); + public INotificationClient stub; public DefaultListModel> globalRanks = new DefaultListModel<>(); public MulticastSocket multicastSocket; + public INotificationServer server; public SocketChannel clientSocket = null; public Game(){ + + Registry registry = null; + try { + registry = LocateRegistry.getRegistry(Config.NotificationServerStubPort); + server = (INotificationServer) registry.lookup(Config.NotificationServerName); + + } catch (RemoteException e) { + e.printStackTrace(); + } catch (NotBoundException e) { + e.printStackTrace(); + } + InetSocketAddress socketAddress = new InetSocketAddress(Config.GameServerURI, Config.GameServerPort); try { clientSocket = SocketChannel.open(socketAddress); diff --git a/Client/src/com/texttwist/client/pages/MenuPage.java b/Client/src/com/texttwist/client/pages/MenuPage.java index 63262c5..e6cf041 100644 --- a/Client/src/com/texttwist/client/pages/MenuPage.java +++ b/Client/src/com/texttwist/client/pages/MenuPage.java @@ -100,7 +100,7 @@ public class MenuPage extends Page{ new Callable() { @Override public Object call() throws Exception { - menuController.logout(App.session.account.userName); + menuController.logout(App.session.account.userName, App.game.stub); return new HomePage(Page.window); } }, diff --git a/Client/src/com/texttwist/client/services/AuthService.java b/Client/src/com/texttwist/client/services/AuthService.java index 7c0e043..e317f5f 100644 --- a/Client/src/com/texttwist/client/services/AuthService.java +++ b/Client/src/com/texttwist/client/services/AuthService.java @@ -1,12 +1,18 @@ package com.texttwist.client.services; import com.texttwist.client.App; +import com.texttwist.client.models.Game; import constants.Config; import interfaces.IAuth; +import interfaces.INotificationClient; +import interfaces.INotificationServer; import models.Response; import java.net.MalformedURLException; import java.rmi.Naming; import java.rmi.NotBoundException; import java.rmi.RemoteException; +import java.rmi.registry.LocateRegistry; +import java.rmi.registry.Registry; +import java.rmi.server.UnicastRemoteObject; /** * Authentication Service @@ -16,6 +22,17 @@ public class AuthService { private String baseUrl = Config.getAuthServerURI().concat("/auth"); public Response login(String userName, String password) throws RemoteException, NotBoundException, MalformedURLException { + try { + + /* si registra per la callback */ + System.out.println("Registering for callback"); + INotificationClient callbackObj = new NotificationClient(); + App.game.stub = (INotificationClient) UnicastRemoteObject.exportObject(callbackObj, 0); + + App.game.server.registerForCallback(App.game.stub); + } catch (RemoteException e) { + e.printStackTrace(); + } IAuth auth = (IAuth) Naming.lookup(baseUrl); return auth.login(userName, password); } @@ -25,8 +42,8 @@ public class AuthService { return auth.register(userName, password); } - public Response logout(String userName) throws RemoteException, NotBoundException, MalformedURLException { + public Response logout(String userName, INotificationClient stub) throws RemoteException, NotBoundException, MalformedURLException { IAuth auth = (IAuth) Naming.lookup(baseUrl); - return auth.logout(userName, App.session.token); + return auth.logout(userName, App.session.token, stub); } } diff --git a/Client/src/com/texttwist/client/services/NotificationClient.java b/Client/src/com/texttwist/client/services/NotificationClient.java index 04f9061..22ddbca 100644 --- a/Client/src/com/texttwist/client/services/NotificationClient.java +++ b/Client/src/com/texttwist/client/services/NotificationClient.java @@ -20,9 +20,13 @@ public class NotificationClient implements INotificationClient { public Response sendInvite(String userName, DefaultListModel users) throws RemoteException { Logger.write("Invoked invitation with username=" + userName + "|" + users.toString() ); - if(users.contains(App.session.account.userName)){ - Logger.write(userName+" ti ha sfidato!"); - App.game.newMatch(userName); + if(App.session != null) { + if (users.contains(App.session.account.userName)) { + Logger.write(userName + " ti ha sfidato!"); + App.game.newMatch(userName); + } else { + Logger.write("L'utente è sloggato"); + } } return null; } diff --git a/Client/src/com/texttwist/client/tasks/WaitForScore.java b/Client/src/com/texttwist/client/tasks/WaitForScore.java index d44d1c2..17e57f5 100644 --- a/Client/src/com/texttwist/client/tasks/WaitForScore.java +++ b/Client/src/com/texttwist/client/tasks/WaitForScore.java @@ -51,8 +51,6 @@ public class WaitForScore extends SwingWorker { } } App.game.ranks = ranks; - App.game.multicastSocket.leaveGroup(InetAddress.getByName(Config.ScoreMulticastServerURI)); - App.game.multicastSocket.close(); } catch (UnknownHostException e) { e.printStackTrace(); @@ -65,6 +63,12 @@ public class WaitForScore extends SwingWorker { @Override public void done(){ App.game.ranks = ranks; + try { + App.game.multicastSocket.leaveGroup(InetAddress.getByName(Config.ScoreMulticastServerURI)); + } catch (IOException e) { + e.printStackTrace(); + } + App.game.multicastSocket.close(); try { this.callback.execute(); diff --git a/Commons/src/interfaces/IAuth.java b/Commons/src/interfaces/IAuth.java index 247613f..614398c 100644 --- a/Commons/src/interfaces/IAuth.java +++ b/Commons/src/interfaces/IAuth.java @@ -10,6 +10,6 @@ import java.rmi.RemoteException; public interface IAuth extends Remote { Response login(String userName, String password) throws RemoteException; Response register(String userName, String password) throws RemoteException; - Response logout(String userName, String token) throws RemoteException; + Response logout(String userName, String token, INotificationClient stub) throws RemoteException; } diff --git a/Commons/src/models/Session.java b/Commons/src/models/Session.java index 77cea47..d8a3010 100644 --- a/Commons/src/models/Session.java +++ b/Commons/src/models/Session.java @@ -1,5 +1,7 @@ package models; +import interfaces.INotificationClient; + /** * Created by loke on 17/06/2017. */ @@ -7,6 +9,7 @@ public class Session { public String token; public User account; + public INotificationClient clientInterface; public Session(User account, String token){ this.token = token; diff --git a/Server/src/com/texttwist/server/components/Auth.java b/Server/src/com/texttwist/server/components/Auth.java index 8178d6d..dfe0df5 100644 --- a/Server/src/com/texttwist/server/components/Auth.java +++ b/Server/src/com/texttwist/server/components/Auth.java @@ -1,5 +1,7 @@ package com.texttwist.server.components; +import com.texttwist.client.App; import interfaces.IAuth; +import interfaces.INotificationClient; import models.Response; import org.json.simple.JsonObject; import utilities.Logger; @@ -9,6 +11,8 @@ import java.rmi.RemoteException; import java.rmi.server.UnicastRemoteObject; import java.security.SecureRandom; +import static com.texttwist.server.Server.notificationServer; + /** * Created by loke on 15/06/2017. */ @@ -56,8 +60,10 @@ public class Auth extends UnicastRemoteObject implements IAuth { } @Override - public Response logout(String userName, String token) throws RemoteException { + public Response logout(String userName, String token, INotificationClient stub) throws RemoteException { Logger.write("Invoked logout with username=" + userName + " AND " + " token=" + token); + notificationServer.unregisterForCallback(stub); + if ((userName != null && !userName.isEmpty()) && (token != null && !token.isEmpty())) { boolean res = SessionsManager.getInstance().remove(userName); if(res) { diff --git a/Server/src/com/texttwist/server/components/NotificationServer.java b/Server/src/com/texttwist/server/components/NotificationServer.java index 54a59e6..20b0a3a 100644 --- a/Server/src/com/texttwist/server/components/NotificationServer.java +++ b/Server/src/com/texttwist/server/components/NotificationServer.java @@ -10,6 +10,8 @@ import java.util.ArrayList; import java.util.Iterator; import java.util.List; +import static com.texttwist.client.App.session; + /** * Created by loke on 19/06/2017. */ @@ -18,12 +20,13 @@ public class NotificationServer implements INotificationServer { private List clients; public NotificationServer() throws RemoteException { super(); - clients = new ArrayList(); + clients = new ArrayList<>(); } public synchronized void registerForCallback(INotificationClient clientInterface) throws RemoteException { if(!clients.contains(clientInterface)){ clients.add(clientInterface); + System.out.println(clientInterface); System.out.println("New client registered"); } } @@ -49,7 +52,11 @@ public class NotificationServer implements INotificationServer { client.sendInvite(username, users); } catch (RemoteException e) { System.out.println("Sembra down"); - //unregisterForCallback(client); + try { + unregisterForCallback(client); + } catch (RemoteException e1) { + e1.printStackTrace(); + } } } diff --git a/Server/src/com/texttwist/server/components/SessionsManager.java b/Server/src/com/texttwist/server/components/SessionsManager.java index 4cffd18..a2fa7bd 100644 --- a/Server/src/com/texttwist/server/components/SessionsManager.java +++ b/Server/src/com/texttwist/server/components/SessionsManager.java @@ -1,4 +1,5 @@ package com.texttwist.server.components; +import interfaces.INotificationClient; import models.Session; import models.User; @@ -13,7 +14,6 @@ import java.util.List; public class SessionsManager { private List sessions = Collections.synchronizedList(new ArrayList()); - private static class Holder { static final SessionsManager INSTANCE = new SessionsManager(); } diff --git a/client_1.log b/client_1.log index 22ed88f..2f3141a 100644 --- a/client_1.log +++ b/client_1.log @@ -7672,3 +7672,760 @@ LOGGER (Client1): Mon Jul 10 21:34:05 CEST 2017 - Invoked invitation with userna 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:36:51 CEST 2017 - Invoked invitation with username=c|[ff, asd] +LOGGER (Client1): Mon Jul 10 21:36:51 CEST 2017 - Invoked invitation with username=c|[ff, asd] +LOGGER (Client1): Mon Jul 10 21:36:51 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:36:51 CEST 2017 - Invoked invitation with username=c|[ff, asd] +LOGGER (Client1): Mon Jul 10 21:36:51 CEST 2017 - Invoked invitation with username=c|[ff, asd] +LOGGER (Client1): Mon Jul 10 21:36:51 CEST 2017 - Invoked invitation with username=c|[ff, asd] +LOGGER (Client1): Mon Jul 10 21:36:51 CEST 2017 - Invoked invitation with username=c|[ff, asd] +LOGGER (Client1): Mon Jul 10 21:36:51 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:40:36 CEST 2017 - Invoked invitation with username=ee|[ff, c] +LOGGER (Client1): Mon Jul 10 21:40:36 CEST 2017 - Invoked invitation with username=ee|[ff, c] +LOGGER (Client1): Mon Jul 10 21:40:36 CEST 2017 - Invoked invitation with username=ee|[ff, c] +LOGGER (Client1): Mon Jul 10 21:40:36 CEST 2017 - ee ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:40:36 CEST 2017 - Invoked invitation with username=ee|[ff, c] +LOGGER (Client1): Mon Jul 10 21:40:36 CEST 2017 - Invoked invitation with username=ee|[ff, c] +LOGGER (Client1): Mon Jul 10 21:40:36 CEST 2017 - Invoked invitation with username=ee|[ff, c] +LOGGER (Client1): Mon Jul 10 21:40:36 CEST 2017 - ee ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:40:48 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 21:40:48 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:40:48 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 21:40:48 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 21:40:48 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 21:40:48 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 21:40:48 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 21:41:04 CEST 2017 - Invoked invitation with username=ee|[ff] +LOGGER (Client1): Mon Jul 10 21:41:04 CEST 2017 - Invoked invitation with username=ee|[ff] +LOGGER (Client1): Mon Jul 10 21:41:04 CEST 2017 - Invoked invitation with username=ee|[ff] +LOGGER (Client1): Mon Jul 10 21:41:04 CEST 2017 - Invoked invitation with username=ee|[ff] +LOGGER (Client1): Mon Jul 10 21:41:04 CEST 2017 - Invoked invitation with username=ee|[ff] +LOGGER (Client1): Mon Jul 10 21:41:04 CEST 2017 - Invoked invitation with username=ee|[ff] +LOGGER (Client1): Mon Jul 10 21:41:04 CEST 2017 - ee ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:41:15 CEST 2017 - Invoked invitation with username=asd|[c] +LOGGER (Client1): Mon Jul 10 21:41:15 CEST 2017 - Invoked invitation with username=asd|[c] +LOGGER (Client1): Mon Jul 10 21:41:15 CEST 2017 - Invoked invitation with username=asd|[c] +LOGGER (Client1): Mon Jul 10 21:41:15 CEST 2017 - asd ti ha sfidato! +LOGGER (Client1): Mon Jul 10 21:41:15 CEST 2017 - Invoked invitation with username=asd|[c] +LOGGER (Client1): Mon Jul 10 21:41:15 CEST 2017 - Invoked invitation with username=asd|[c] +LOGGER (Client1): Mon Jul 10 21:41:15 CEST 2017 - Invoked invitation with username=asd|[c] +LOGGER (Client1): Mon Jul 10 21:49:48 CEST 2017 - Invoked invitation with username=asd|[ff] +LOGGER (Client1): Mon Jul 10 21:49:59 CEST 2017 - Invoked invitation with username=c|[ee] +LOGGER (Client1): Mon Jul 10 21:50:26 CEST 2017 - Invoked invitation with username=asd|[c] +LOGGER (Client1): Mon Jul 10 21:51:22 CEST 2017 - Invoked invitation with username=asd|[c] +LOGGER (Client1): Mon Jul 10 21:54:31 CEST 2017 - Invoked invitation with username=asd|[c] +LOGGER (Client1): Mon Jul 10 21:55:10 CEST 2017 - Invoked invitation with username=asd|[c] +LOGGER (Client1): Mon Jul 10 21:55:48 CEST 2017 - Invoked invitation with username=ee|[asd] +LOGGER (Client1): Mon Jul 10 21:56:35 CEST 2017 - Invoked invitation with username=c|[asd] +LOGGER (Client1): Mon Jul 10 21:57:19 CEST 2017 - Invoked invitation with username=ff|[asd] +LOGGER (Client1): Mon Jul 10 21:59:55 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 21:59:56 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:00:04 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:00:09 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 22:00:09 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 22:00:09 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:00:09 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 22:00:23 CEST 2017 - Invoked invitation with username=b|[a, c] +LOGGER (Client1): Mon Jul 10 22:00:23 CEST 2017 - Invoked invitation with username=b|[a, c] +LOGGER (Client1): Mon Jul 10 22:00:23 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:00:23 CEST 2017 - Invoked invitation with username=b|[a, c] +LOGGER (Client1): Mon Jul 10 22:00:23 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:00:43 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:00:43 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:00:43 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:00:43 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:00:54 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 22:00:54 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 22:00:54 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:00:54 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 22:01:17 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 22:03:13 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:03:17 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:03:20 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:03:25 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 22:03:25 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:03:25 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 22:03:25 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 22:03:38 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 22:03:38 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:03:38 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 22:03:38 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 22:03:56 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 22:03:56 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 22:03:56 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:03:56 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 22:03:56 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:04:14 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:04:23 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:04:23 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:04:24 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:04:24 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:04:24 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:04:24 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:04:25 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:04:25 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:05:22 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:05:27 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:05:27 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:05:29 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:06:20 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:06:20 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:06:22 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:06:22 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:06:48 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:06:49 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:06:54 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:07:06 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:07:06 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:07:06 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:07:06 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:07:16 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:07:16 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:07:16 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:07:16 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:07:31 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:07:31 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:10:49 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:10:51 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:10:57 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 22:10:57 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:10:57 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 22:10:57 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:11:01 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:11:06 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:11:11 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:11:11 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:11:11 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:11:11 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:11:11 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:11:11 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:11:11 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:11:11 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:11:16 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:11:16 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:11:16 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:11:16 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:11:16 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:11:16 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:11:16 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:11:16 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:11:27 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 22:11:27 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:11:27 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 22:12:01 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:12:01 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:12:01 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:12:12 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 22:12:12 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:12:12 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 22:12:12 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:12:12 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 22:12:12 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:12:12 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 22:12:12 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:12:17 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:12:41 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:12:41 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:12:41 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:12:41 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:12:41 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:12:41 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:12:41 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:12:41 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:12:41 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:12:41 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:12:49 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 22:12:49 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:12:49 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 22:12:49 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:12:49 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 22:12:49 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:12:49 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 22:12:49 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:12:49 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 22:12:49 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:13:03 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:13:03 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:13:03 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:13:03 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:13:03 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:13:51 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:13:52 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:14:00 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 22:14:00 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:14:00 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 22:14:00 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:14:04 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:14:06 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:14:17 CEST 2017 - Invoked invitation with username=d|[c, a] +LOGGER (Client1): Mon Jul 10 22:14:17 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:14:17 CEST 2017 - Invoked invitation with username=d|[c, a] +LOGGER (Client1): Mon Jul 10 22:14:17 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:14:17 CEST 2017 - Invoked invitation with username=d|[c, a] +LOGGER (Client1): Mon Jul 10 22:14:17 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:14:17 CEST 2017 - Invoked invitation with username=d|[c, a] +LOGGER (Client1): Mon Jul 10 22:14:17 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:14:22 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:14:39 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Mon Jul 10 22:14:39 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:14:39 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Mon Jul 10 22:14:39 CEST 2017 - e ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:14:39 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Mon Jul 10 22:14:39 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:14:39 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Mon Jul 10 22:14:39 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:14:39 CEST 2017 - Invoked invitation with username=e|[a] +LOGGER (Client1): Mon Jul 10 22:14:39 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:14:46 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:14:46 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:14:46 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:14:46 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:14:46 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:14:55 CEST 2017 - Invoked invitation with username=a|[e] +LOGGER (Client1): Mon Jul 10 22:14:55 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:14:55 CEST 2017 - Invoked invitation with username=a|[e] +LOGGER (Client1): Mon Jul 10 22:14:55 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:14:55 CEST 2017 - Invoked invitation with username=a|[e] +LOGGER (Client1): Mon Jul 10 22:16:42 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:16:43 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:16:45 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:16:46 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:16:47 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:16:49 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:17:21 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Mon Jul 10 22:17:21 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:21 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Mon Jul 10 22:17:21 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:21 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Mon Jul 10 22:17:21 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:21 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Mon Jul 10 22:17:21 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:21 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Mon Jul 10 22:17:21 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:21 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Mon Jul 10 22:17:21 CEST 2017 - f ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:17:26 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 22:17:26 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:26 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 22:17:26 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:26 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 22:17:26 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:26 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 22:17:26 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:17:26 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 22:17:26 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:26 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 22:17:26 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:30 CEST 2017 - Invoked invitation with username=b|[e] +LOGGER (Client1): Mon Jul 10 22:17:30 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:30 CEST 2017 - Invoked invitation with username=b|[e] +LOGGER (Client1): Mon Jul 10 22:17:30 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:30 CEST 2017 - Invoked invitation with username=b|[e] +LOGGER (Client1): Mon Jul 10 22:17:30 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:17:30 CEST 2017 - Invoked invitation with username=b|[e] +LOGGER (Client1): Mon Jul 10 22:17:30 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:30 CEST 2017 - Invoked invitation with username=b|[e] +LOGGER (Client1): Mon Jul 10 22:17:30 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:30 CEST 2017 - Invoked invitation with username=b|[e] +LOGGER (Client1): Mon Jul 10 22:17:30 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:39 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:17:39 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:17:39 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:39 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:17:39 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:39 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:17:39 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:39 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:17:39 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:17:39 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:17:39 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:45 CEST 2017 - Invoked invitation with username=c|[e] +LOGGER (Client1): Mon Jul 10 22:17:45 CEST 2017 - Invoked invitation with username=c|[e] +LOGGER (Client1): Mon Jul 10 22:17:45 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:45 CEST 2017 - Invoked invitation with username=c|[e] +LOGGER (Client1): Mon Jul 10 22:17:45 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:17:45 CEST 2017 - Invoked invitation with username=c|[e] +LOGGER (Client1): Mon Jul 10 22:17:45 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:45 CEST 2017 - Invoked invitation with username=c|[e] +LOGGER (Client1): Mon Jul 10 22:17:45 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:45 CEST 2017 - Invoked invitation with username=c|[e] +LOGGER (Client1): Mon Jul 10 22:17:45 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:54 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:17:54 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:17:54 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:54 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:17:54 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:54 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:17:54 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:54 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:17:54 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:17:54 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:17:54 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:18:02 CEST 2017 - Invoked invitation with username=f|[b] +LOGGER (Client1): Mon Jul 10 22:18:02 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:18:02 CEST 2017 - Invoked invitation with username=f|[b] +LOGGER (Client1): Mon Jul 10 22:18:02 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:18:02 CEST 2017 - Invoked invitation with username=f|[b] +LOGGER (Client1): Mon Jul 10 22:18:02 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:18:02 CEST 2017 - Invoked invitation with username=f|[b] +LOGGER (Client1): Mon Jul 10 22:18:02 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:18:02 CEST 2017 - Invoked invitation with username=f|[b] +LOGGER (Client1): Mon Jul 10 22:18:02 CEST 2017 - f ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:18:02 CEST 2017 - Invoked invitation with username=f|[b] +LOGGER (Client1): Mon Jul 10 22:18:02 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:18:12 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 22:18:12 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:18:12 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 22:18:12 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:18:12 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 22:18:12 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 22:18:12 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 22:18:12 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:18:12 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 22:18:12 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:18:22 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 22:18:22 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:18:22 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 22:18:22 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:18:22 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 22:18:22 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 22:18:22 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:18:22 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 22:18:22 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:18:22 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 22:18:22 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:18:28 CEST 2017 - Invoked invitation with username=f|[] +LOGGER (Client1): Mon Jul 10 22:18:28 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:18:28 CEST 2017 - Invoked invitation with username=f|[] +LOGGER (Client1): Mon Jul 10 22:18:28 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:18:28 CEST 2017 - Invoked invitation with username=f|[] +LOGGER (Client1): Mon Jul 10 22:18:28 CEST 2017 - Invoked invitation with username=f|[] +LOGGER (Client1): Mon Jul 10 22:18:28 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:18:28 CEST 2017 - Invoked invitation with username=f|[] +LOGGER (Client1): Mon Jul 10 22:18:28 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:18:28 CEST 2017 - Invoked invitation with username=f|[] +LOGGER (Client1): Mon Jul 10 22:18:28 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:18:33 CEST 2017 - Invoked invitation with username=f|[e] +LOGGER (Client1): Mon Jul 10 22:18:33 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:18:33 CEST 2017 - Invoked invitation with username=f|[e] +LOGGER (Client1): Mon Jul 10 22:18:33 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:18:33 CEST 2017 - Invoked invitation with username=f|[e] +LOGGER (Client1): Mon Jul 10 22:18:33 CEST 2017 - f ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:18:33 CEST 2017 - Invoked invitation with username=f|[e] +LOGGER (Client1): Mon Jul 10 22:18:33 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:18:33 CEST 2017 - Invoked invitation with username=f|[e] +LOGGER (Client1): Mon Jul 10 22:18:33 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:18:33 CEST 2017 - Invoked invitation with username=f|[e] +LOGGER (Client1): Mon Jul 10 22:18:33 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:20:30 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Mon Jul 10 22:20:30 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:20:30 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Mon Jul 10 22:20:30 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:20:30 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Mon Jul 10 22:20:30 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:20:30 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Mon Jul 10 22:20:30 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:20:30 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Mon Jul 10 22:20:30 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:20:30 CEST 2017 - Invoked invitation with username=f|[a] +LOGGER (Client1): Mon Jul 10 22:20:30 CEST 2017 - f ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:21:19 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:21:19 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:21:20 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:21:20 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:21:20 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:21:20 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:21:45 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 22:21:45 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:21:46 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 22:21:46 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:21:46 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 22:21:46 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:29:28 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:36:47 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:36:49 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:36:51 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:36:52 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:37:06 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:37:06 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:37:06 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:37:07 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:37:07 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:37:07 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:37:07 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:37:07 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:37:11 CEST 2017 - Invoked invitation with username=b|[] +LOGGER (Client1): Mon Jul 10 22:37:11 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:37:11 CEST 2017 - Invoked invitation with username=b|[] +LOGGER (Client1): Mon Jul 10 22:37:11 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:37:11 CEST 2017 - Invoked invitation with username=b|[] +LOGGER (Client1): Mon Jul 10 22:37:11 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:37:11 CEST 2017 - Invoked invitation with username=b|[] +LOGGER (Client1): Mon Jul 10 22:37:11 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:37:12 CEST 2017 - Invoked invitation with username=b|[] +LOGGER (Client1): Mon Jul 10 22:37:12 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:37:12 CEST 2017 - Invoked invitation with username=b|[] +LOGGER (Client1): Mon Jul 10 22:37:12 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:37:12 CEST 2017 - Invoked invitation with username=b|[] +LOGGER (Client1): Mon Jul 10 22:37:12 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:37:12 CEST 2017 - Invoked invitation with username=b|[] +LOGGER (Client1): Mon Jul 10 22:37:12 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:37:14 CEST 2017 - Invoked invitation with username=b|[] +LOGGER (Client1): Mon Jul 10 22:37:14 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:37:14 CEST 2017 - Invoked invitation with username=b|[] +LOGGER (Client1): Mon Jul 10 22:37:14 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:37:14 CEST 2017 - Invoked invitation with username=b|[] +LOGGER (Client1): Mon Jul 10 22:37:14 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:37:14 CEST 2017 - Invoked invitation with username=b|[] +LOGGER (Client1): Mon Jul 10 22:37:14 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:37:24 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:37:24 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:37:24 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:37:24 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:37:24 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:37:24 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:37:24 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:37:24 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:37:45 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:37:45 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:37:45 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:37:45 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:37:45 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:37:45 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:37:45 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:37:45 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:37:51 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:37:51 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:37:51 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:37:51 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:37:51 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:37:51 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:37:51 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:37:51 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:38:18 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:38:19 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:38:27 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 22:38:27 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:39:19 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:40:54 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:40:55 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:40:56 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:40:58 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:41:13 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:41:13 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:41:13 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:41:13 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:41:13 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:41:13 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:41:13 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:41:13 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:41:18 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:41:18 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:41:18 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:41:18 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:41:18 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:41:18 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:41:18 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:41:18 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:44:22 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:44:57 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:44:58 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:45:06 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:45:14 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 22:45:14 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:45:14 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 22:45:14 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:45:38 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 22:45:38 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:45:38 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Mon Jul 10 22:45:38 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:45:53 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 22:45:53 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:45:53 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 22:45:53 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:46:06 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:46:06 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:46:06 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:46:06 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:47:02 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 22:47:02 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:47:02 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 22:47:02 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:47:07 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 22:47:07 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:47:07 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 22:47:07 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:50:12 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:50:14 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:50:15 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:50:17 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:50:32 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 22:50:32 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:50:32 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 22:50:32 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:50:32 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 22:50:32 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:50:32 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Mon Jul 10 22:50:32 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:50:37 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 22:50:37 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:50:37 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 22:50:37 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:50:37 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 22:50:37 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:50:37 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 22:50:37 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:50:54 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:50:54 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:50:54 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:50:54 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:50:54 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:50:54 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:50:54 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:50:54 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:50:59 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 22:50:59 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:50:59 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 22:50:59 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:50:59 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 22:50:59 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:50:59 CEST 2017 - Invoked invitation with username=a|[d] +LOGGER (Client1): Mon Jul 10 22:50:59 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:51:12 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:51:12 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:51:12 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:51:12 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:51:12 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:51:12 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:51:12 CEST 2017 - Invoked invitation with username=c|[b] +LOGGER (Client1): Mon Jul 10 22:51:12 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:51:25 CEST 2017 - Invoked invitation with username=d|[] +LOGGER (Client1): Mon Jul 10 22:51:25 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:51:25 CEST 2017 - Invoked invitation with username=d|[] +LOGGER (Client1): Mon Jul 10 22:51:25 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:51:25 CEST 2017 - Invoked invitation with username=d|[] +LOGGER (Client1): Mon Jul 10 22:51:25 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:51:26 CEST 2017 - Invoked invitation with username=d|[] +LOGGER (Client1): Mon Jul 10 22:51:26 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:51:26 CEST 2017 - Invoked invitation with username=d|[] +LOGGER (Client1): Mon Jul 10 22:51:26 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:51:26 CEST 2017 - Invoked invitation with username=d|[] +LOGGER (Client1): Mon Jul 10 22:51:26 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:51:34 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 22:51:34 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:51:34 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 22:51:34 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:51:34 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Mon Jul 10 22:51:34 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:51:53 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:51:53 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:51:53 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:51:53 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:51:53 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:51:53 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:51:53 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:51:53 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:52:00 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 22:52:00 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:52:00 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 22:52:00 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:52:00 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 22:52:01 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:52:01 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 22:52:01 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:55:01 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:55:03 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:55:09 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:55:12 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:55:24 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:55:24 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:55:24 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:55:24 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:55:24 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:55:24 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:55:24 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:55:24 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:55:34 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 22:55:34 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:55:34 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 22:55:34 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:55:34 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 22:55:34 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:55:34 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 22:55:34 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:55:47 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:55:47 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:55:47 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:55:47 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:55:47 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:55:47 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:55:47 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:55:47 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:55:53 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 22:55:53 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:55:54 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 22:55:54 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:55:54 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 22:55:54 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:55:54 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 22:55:54 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:56:04 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 22:56:04 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:56:04 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 22:56:04 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:56:04 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 22:56:04 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:56:04 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 22:56:04 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:56:16 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:56:16 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:56:16 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:56:16 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:56:16 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:56:16 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:56:16 CEST 2017 - Invoked invitation with username=d|[a] +LOGGER (Client1): Mon Jul 10 22:56:16 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:56:19 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:56:19 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:56:19 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:56:19 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:56:19 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:56:19 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:56:19 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:56:19 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:56:27 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:56:28 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:56:46 CEST 2017 - Invoked invitation with username=ee|[a] +LOGGER (Client1): Mon Jul 10 22:56:46 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:56:46 CEST 2017 - Invoked invitation with username=ee|[a] +LOGGER (Client1): Mon Jul 10 22:56:46 CEST 2017 - ee ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:56:46 CEST 2017 - Invoked invitation with username=ee|[a] +LOGGER (Client1): Mon Jul 10 22:56:46 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:56:46 CEST 2017 - Invoked invitation with username=ee|[a] +LOGGER (Client1): Mon Jul 10 22:56:46 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:56:46 CEST 2017 - Invoked invitation with username=ee|[a] +LOGGER (Client1): Mon Jul 10 22:56:46 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:56:46 CEST 2017 - Invoked invitation with username=ee|[a] +LOGGER (Client1): Mon Jul 10 22:56:46 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:56:51 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:56:51 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:56:51 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:56:51 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:56:51 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:56:51 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:56:51 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:56:51 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:56:51 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:56:51 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:56:51 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Mon Jul 10 22:56:51 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:57:03 CEST 2017 - Invoked invitation with username=a|[c, ee] +LOGGER (Client1): Mon Jul 10 22:57:03 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:57:03 CEST 2017 - Invoked invitation with username=a|[c, ee] +LOGGER (Client1): Mon Jul 10 22:57:03 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:57:03 CEST 2017 - Invoked invitation with username=a|[c, ee] +LOGGER (Client1): Mon Jul 10 22:57:03 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:57:03 CEST 2017 - Invoked invitation with username=a|[c, ee] +LOGGER (Client1): Mon Jul 10 22:57:03 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:57:03 CEST 2017 - Invoked invitation with username=a|[c, ee] +LOGGER (Client1): Mon Jul 10 22:57:03 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:58:42 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:58:43 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:58:49 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 22:58:49 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:58:49 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 22:58:49 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:58:52 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:58:57 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 22:58:57 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:58:57 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 22:58:57 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:58:57 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Mon Jul 10 22:58:57 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:59:03 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 22:59:08 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 22:59:08 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:59:08 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 22:59:08 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:59:08 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 22:59:08 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:59:08 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Mon Jul 10 22:59:08 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:59:13 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:59:13 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:59:13 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:59:13 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:59:13 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:59:13 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:59:13 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Mon Jul 10 22:59:13 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:59:31 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 22:59:31 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:59:31 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 22:59:31 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:59:31 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 22:59:31 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:59:31 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Mon Jul 10 22:59:31 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:59:36 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 22:59:36 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:59:36 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 22:59:36 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:59:36 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 22:59:36 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 22:59:36 CEST 2017 - Invoked invitation with username=c|[d] +LOGGER (Client1): Mon Jul 10 22:59:36 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Mon Jul 10 22:59:49 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 23:00:01 CEST 2017 - Invoked invitation with username=asd|[a, b, c, d] +LOGGER (Client1): Mon Jul 10 23:00:01 CEST 2017 - asd ti ha sfidato! +LOGGER (Client1): Mon Jul 10 23:00:01 CEST 2017 - Invoked invitation with username=asd|[a, b, c, d] +LOGGER (Client1): Mon Jul 10 23:00:01 CEST 2017 - asd ti ha sfidato! +LOGGER (Client1): Mon Jul 10 23:00:01 CEST 2017 - Invoked invitation with username=asd|[a, b, c, d] +LOGGER (Client1): Mon Jul 10 23:00:01 CEST 2017 - asd ti ha sfidato! +LOGGER (Client1): Mon Jul 10 23:00:01 CEST 2017 - Invoked invitation with username=asd|[a, b, c, d] +LOGGER (Client1): Mon Jul 10 23:00:01 CEST 2017 - asd ti ha sfidato! +LOGGER (Client1): Mon Jul 10 23:00:01 CEST 2017 - Invoked invitation with username=asd|[a, b, c, d] +LOGGER (Client1): Mon Jul 10 23:00:01 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 23:00:09 CEST 2017 - Client starting ... +LOGGER (Client1): Mon Jul 10 23:00:26 CEST 2017 - Invoked invitation with username=b|[dd, a] +LOGGER (Client1): Mon Jul 10 23:00:26 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 23:00:26 CEST 2017 - Invoked invitation with username=b|[dd, a] +LOGGER (Client1): Mon Jul 10 23:00:26 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 23:00:26 CEST 2017 - Invoked invitation with username=b|[dd, a] +LOGGER (Client1): Mon Jul 10 23:00:26 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 23:00:26 CEST 2017 - Invoked invitation with username=b|[dd, a] +LOGGER (Client1): Mon Jul 10 23:00:26 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 23:00:26 CEST 2017 - Invoked invitation with username=b|[dd, a] +LOGGER (Client1): Mon Jul 10 23:00:26 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 23:00:26 CEST 2017 - Invoked invitation with username=b|[dd, a] +LOGGER (Client1): Mon Jul 10 23:00:26 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 23:00:46 CEST 2017 - Invoked invitation with username=asd|[b] +LOGGER (Client1): Mon Jul 10 23:00:46 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 23:00:46 CEST 2017 - Invoked invitation with username=asd|[b] +LOGGER (Client1): Mon Jul 10 23:00:46 CEST 2017 - asd ti ha sfidato! +LOGGER (Client1): Mon Jul 10 23:00:46 CEST 2017 - Invoked invitation with username=asd|[b] +LOGGER (Client1): Mon Jul 10 23:00:46 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 23:00:46 CEST 2017 - Invoked invitation with username=asd|[b] +LOGGER (Client1): Mon Jul 10 23:00:46 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 23:00:46 CEST 2017 - Invoked invitation with username=asd|[b] +LOGGER (Client1): Mon Jul 10 23:00:46 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 23:00:46 CEST 2017 - Invoked invitation with username=asd|[b] +LOGGER (Client1): Mon Jul 10 23:00:46 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 23:00:55 CEST 2017 - Invoked invitation with username=dd|[c] +LOGGER (Client1): Mon Jul 10 23:00:55 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 23:00:55 CEST 2017 - Invoked invitation with username=dd|[c] +LOGGER (Client1): Mon Jul 10 23:00:55 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 23:00:55 CEST 2017 - Invoked invitation with username=dd|[c] +LOGGER (Client1): Mon Jul 10 23:00:55 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 23:00:55 CEST 2017 - Invoked invitation with username=dd|[c] +LOGGER (Client1): Mon Jul 10 23:00:55 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 23:00:55 CEST 2017 - Invoked invitation with username=dd|[c] +LOGGER (Client1): Mon Jul 10 23:00:55 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 23:00:55 CEST 2017 - Invoked invitation with username=dd|[c] +LOGGER (Client1): Mon Jul 10 23:00:55 CEST 2017 - dd ti ha sfidato! +LOGGER (Client1): Mon Jul 10 23:01:37 CEST 2017 - Invoked invitation with username=b|[a, c] +LOGGER (Client1): Mon Jul 10 23:01:37 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Mon Jul 10 23:01:37 CEST 2017 - Invoked invitation with username=b|[a, c] +LOGGER (Client1): Mon Jul 10 23:01:37 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Mon Jul 10 23:01:37 CEST 2017 - Invoked invitation with username=b|[a, c] +LOGGER (Client1): Mon Jul 10 23:01:37 CEST 2017 - b ti ha sfidato! diff --git a/server.log b/server.log index 0f52d0f..1b87b03 100644 --- a/server.log +++ b/server.log @@ -9256,3 +9256,357 @@ LOGGER (Server): Mon Jul 10 21:33:44 CEST 2017 - Invoked register with username= 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 +LOGGER (Server): Mon Jul 10 21:49:44 CEST 2017 - Invoked logout with username=b AND token=59kg42dhkoqo47n1jvnhhoqsbl +LOGGER (Server): Mon Jul 10 21:49:44 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 21:49:44 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 21:49:45 CEST 2017 - Invoked logout with username=d AND token=hnrkrdg97sfe89c8vtuknc49nt +LOGGER (Server): Mon Jul 10 21:49:45 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 21:49:45 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 21:59:52 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 21:59:52 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 21:59:52 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 21:59:52 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 21:59:58 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 21:59:58 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:00:00 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 22:00:00 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:00:05 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 22:00:05 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:00:36 CEST 2017 - Invoked logout with username=c AND token=jqda96mbskl708hnbd8i1to5l2 +LOGGER (Server): Mon Jul 10 22:00:36 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:00:36 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:00:59 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 22:00:59 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:01:06 CEST 2017 - Invoked logout with username=b AND token=2fs3029b4norohrai31ifi8aj5 +LOGGER (Server): Mon Jul 10 22:01:06 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:01:06 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:01:13 CEST 2017 - Invoked logout with username=b AND token=aiktdjpos38t82ok6el8t71oci +LOGGER (Server): Mon Jul 10 22:01:13 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:01:15 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 22:01:15 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:03:11 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 22:03:11 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 22:03:11 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 22:03:11 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 22:03:14 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 22:03:14 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:03:18 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 22:03:18 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:03:21 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 22:03:21 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:03:31 CEST 2017 - Invoked logout with username=b AND token=v4ihft0651v314htajg8rioldb +LOGGER (Server): Mon Jul 10 22:03:32 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:03:32 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:03:34 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 22:03:34 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:04:16 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 22:04:16 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:05:24 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 22:05:24 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:06:05 CEST 2017 - Invoked logout with username=c AND token=vaim98rqs0da2m23ilgnvqti6f +LOGGER (Server): Mon Jul 10 22:06:05 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:06:05 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:06:07 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 22:06:07 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:06:10 CEST 2017 - Invoked logout with username=c AND token=ketulmkiqttim0a7iuk6ea9hrt +LOGGER (Server): Mon Jul 10 22:06:10 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:06:10 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:06:12 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 22:06:12 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:06:17 CEST 2017 - Invoked logout with username=c AND token=e0uq2em6smta18acdo9ufunvsr +LOGGER (Server): Mon Jul 10 22:06:17 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:06:18 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 22:06:18 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:06:44 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 22:06:44 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 22:06:44 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 22:06:44 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 22:06:50 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 22:06:50 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:06:53 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 22:06:53 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:06:57 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 22:06:57 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:07:28 CEST 2017 - Invoked logout with username=a AND token=hk4fq27q2gvg4io0hs6lgongia +LOGGER (Server): Mon Jul 10 22:07:28 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:07:28 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:10:45 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 22:10:45 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 22:10:45 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 22:10:45 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 22:10:52 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 22:10:52 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:10:54 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 22:10:54 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:11:02 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 22:11:02 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:11:08 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 22:11:08 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:11:22 CEST 2017 - Invoked logout with username=a AND token=33vde70hl9nnlklk4e1kuad6pv +LOGGER (Server): Mon Jul 10 22:11:22 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:11:22 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:12:09 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 22:12:09 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:12:19 CEST 2017 - Invoked register with username=e AND password=e +LOGGER (Server): Mon Jul 10 22:12:19 CEST 2017 - Registration successfull +LOGGER (Server): Mon Jul 10 22:12:28 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 22:12:28 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:12:52 CEST 2017 - Invoked logout with username=c AND token=i2vpslqdfmivoik28p4f96l8eu +LOGGER (Server): Mon Jul 10 22:12:52 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:12:52 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:13:01 CEST 2017 - Invoked logout with username=c AND token=p6c26b9ruugcdqjrver7q0ugd +LOGGER (Server): Mon Jul 10 22:13:01 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:13:03 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 22:13:03 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:13:49 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 22:13:49 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 22:13:49 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 22:13:49 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 22:13:53 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 22:13:53 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:13:57 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 22:13:57 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:14:08 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 22:14:08 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:14:10 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 22:14:10 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:14:25 CEST 2017 - Invoked register with username=e AND password=e +LOGGER (Server): Mon Jul 10 22:14:25 CEST 2017 - Registration successfull +LOGGER (Server): Mon Jul 10 22:14:28 CEST 2017 - Invoked login with username=e AND password=e +LOGGER (Server): Mon Jul 10 22:14:28 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:14:43 CEST 2017 - Invoked logout with username=d AND token=35mo561gbsngiq4q8do4a84d0b +LOGGER (Server): Mon Jul 10 22:14:43 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:14:43 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:16:27 CEST 2017 - Invoked logout with username=a AND token=923dk97f1ki4fgukc4dicn9dfi +LOGGER (Server): Mon Jul 10 22:16:27 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:16:27 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:16:39 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 22:16:39 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 22:16:40 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 22:16:40 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 22:16:50 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 22:16:50 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:16:52 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 22:16:52 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:16:56 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 22:16:56 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:16:59 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 22:16:59 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:17:06 CEST 2017 - Invoked register with username=e AND password=e +LOGGER (Server): Mon Jul 10 22:17:06 CEST 2017 - Registration successfull +LOGGER (Server): Mon Jul 10 22:17:08 CEST 2017 - Invoked login with username=e AND password=e +LOGGER (Server): Mon Jul 10 22:17:08 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:17:14 CEST 2017 - Invoked register with username=f AND password=f +LOGGER (Server): Mon Jul 10 22:17:14 CEST 2017 - Registration successfull +LOGGER (Server): Mon Jul 10 22:17:17 CEST 2017 - Invoked login with username=f AND password=f +LOGGER (Server): Mon Jul 10 22:17:17 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:17:35 CEST 2017 - Invoked logout with username=f AND token=jcadjl43m3l7rdhns50nqq7c79 +LOGGER (Server): Mon Jul 10 22:17:35 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:17:35 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:17:59 CEST 2017 - Invoked login with username=f AND password=f +LOGGER (Server): Mon Jul 10 22:17:59 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:18:06 CEST 2017 - Invoked logout with username=e AND token=ma9n0p54p1ifod1r87ud0tvqkb +LOGGER (Server): Mon Jul 10 22:18:06 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:18:06 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:18:07 CEST 2017 - Invoked logout with username=d AND token=517v9kmlhchojrns6s9g77ckvr +LOGGER (Server): Mon Jul 10 22:18:07 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:18:07 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:18:17 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 22:18:17 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:18:32 CEST 2017 - Invoked login with username=e AND password=e +LOGGER (Server): Mon Jul 10 22:18:32 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:29:25 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 22:29:26 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 22:29:26 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 22:29:26 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 22:29:29 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 22:29:29 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:36:46 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 22:36:46 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 22:36:46 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 22:36:46 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 22:36:53 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 22:36:53 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:36:56 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 22:36:56 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:37:00 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 22:37:00 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:37:03 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 22:37:03 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:38:21 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 22:38:21 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:38:24 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 22:38:24 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:38:53 CEST 2017 - Invoked logout with username=c AND token=ttnmq8lfp129kqn9oc2k6s2862 +LOGGER (Server): Mon Jul 10 22:38:54 CEST 2017 - Invoked logout with username=c AND token=ttnmq8lfp129kqn9oc2k6s2862 +LOGGER (Server): Mon Jul 10 22:39:00 CEST 2017 - Invoked logout with username=c AND token=ttnmq8lfp129kqn9oc2k6s2862 +LOGGER (Server): Mon Jul 10 22:39:16 CEST 2017 - Invoked logout with username=b AND token=nm6m5vdg9r1s2h33929327sboi +LOGGER (Server): Mon Jul 10 22:39:20 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 22:39:20 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:39:21 CEST 2017 - Invoked logout with username=b AND token=l0gdhelljs0fargqvmrbs6tghp +LOGGER (Server): Mon Jul 10 22:40:52 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 22:40:52 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 22:40:52 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 22:40:52 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 22:40:59 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 22:40:59 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:41:03 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 22:41:04 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:41:06 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 22:41:06 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:41:10 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 22:41:10 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:41:24 CEST 2017 - Invoked logout with username=d AND token=70j610f30lvtemv1dandj5s9vb +LOGGER (Server): Mon Jul 10 22:44:55 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 22:44:55 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 22:44:55 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 22:44:55 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 22:44:59 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 22:44:59 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:45:00 CEST 2017 - Invoked logout with username=a AND token=7abucrj1jdeu60kvec3t6in1en +LOGGER (Server): Mon Jul 10 22:45:00 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:45:00 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:45:04 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 22:45:04 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:45:07 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 22:45:07 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:45:12 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 22:45:12 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:46:20 CEST 2017 - Invoked logout with username=a AND token=sfa822kaclrh3r4ufms1tm0hr1 +LOGGER (Server): Mon Jul 10 22:46:20 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:46:20 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:46:37 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 22:46:37 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:50:11 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 22:50:11 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 22:50:11 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 22:50:11 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 22:50:18 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 22:50:18 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:50:21 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 22:50:21 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:50:25 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 22:50:25 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:50:29 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 22:50:29 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:50:41 CEST 2017 - Invoked logout with username=b AND token=ogf861td6j7t3e4omp1oksd14e +LOGGER (Server): Mon Jul 10 22:50:41 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:50:41 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:50:53 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 22:50:53 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:51:18 CEST 2017 - Invoked logout with username=a AND token=elmg02m6cc2oof5t13m9ebs1r1 +LOGGER (Server): Mon Jul 10 22:51:18 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:51:18 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:51:51 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 22:51:51 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:55:00 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 22:55:00 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 22:55:00 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 22:55:00 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 22:55:04 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 22:55:04 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:55:06 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 22:55:06 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:55:10 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 22:55:10 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:55:13 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 22:55:13 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:55:27 CEST 2017 - Invoked logout with username=c AND token=6qflcqjq16aq9vqf2u07va4qg8 +LOGGER (Server): Mon Jul 10 22:55:27 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:55:27 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:55:30 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 22:55:30 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:55:39 CEST 2017 - Invoked logout with username=b AND token=v8nu3lb2q6j9hsevkis2tnsvfj +LOGGER (Server): Mon Jul 10 22:55:39 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:55:39 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:55:45 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 22:55:45 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:56:00 CEST 2017 - Invoked logout with username=a AND token=lgjeu8rh690jafpac9ine4q800 +LOGGER (Server): Mon Jul 10 22:56:00 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:56:00 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:56:01 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 22:56:01 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:56:10 CEST 2017 - Invoked logout with username=c AND token=hste0m985hb1pr18r8egllal24 +LOGGER (Server): Mon Jul 10 22:56:10 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:56:10 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:56:12 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 22:56:12 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:56:12 CEST 2017 - Invoked logout with username=d AND token=59v03ljf5b3p8ng1dpks5ujhmc +LOGGER (Server): Mon Jul 10 22:56:12 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:56:12 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:56:14 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 22:56:14 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:56:31 CEST 2017 - Invoked register with username=ee AND password=ee +LOGGER (Server): Mon Jul 10 22:56:31 CEST 2017 - Registration successfull +LOGGER (Server): Mon Jul 10 22:56:36 CEST 2017 - Invoked login with username=b AND password= +LOGGER (Server): Mon Jul 10 22:56:36 CEST 2017 - Login unsuccessfull +LOGGER (Server): Mon Jul 10 22:56:38 CEST 2017 - Invoked login with username=ee AND password=ee +LOGGER (Server): Mon Jul 10 22:56:38 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:56:39 CEST 2017 - Invoked logout with username=ee AND token=hlpckmrp2kmiao08ggcl4uho7o +LOGGER (Server): Mon Jul 10 22:56:39 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:56:39 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:56:42 CEST 2017 - Invoked login with username=ee AND password=ee +LOGGER (Server): Mon Jul 10 22:56:42 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:56:55 CEST 2017 - Invoked logout with username=d AND token=s8jvbrbbrk0m2b2m9musamckdr +LOGGER (Server): Mon Jul 10 22:56:55 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 22:56:55 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 22:57:14 CEST 2017 - Invoked register with username=asd AND password=asd +LOGGER (Server): Mon Jul 10 22:57:14 CEST 2017 - Registration successfull +LOGGER (Server): Mon Jul 10 22:57:16 CEST 2017 - Invoked login with username=a AND password= +LOGGER (Server): Mon Jul 10 22:57:16 CEST 2017 - Login unsuccessfull +LOGGER (Server): Mon Jul 10 22:57:18 CEST 2017 - Invoked login with username=asd AND password=asd +LOGGER (Server): Mon Jul 10 22:57:18 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:58:40 CEST 2017 - Server starting ... +LOGGER (Server): Mon Jul 10 22:58:41 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Mon Jul 10 22:58:41 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Mon Jul 10 22:58:41 CEST 2017 - Server started +LOGGER (Server): Mon Jul 10 22:58:44 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 22:58:44 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:58:47 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 22:58:47 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:58:53 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 22:58:53 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:59:05 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Mon Jul 10 22:59:05 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 22:59:52 CEST 2017 - Invoked register with username=asd AND password=asd +LOGGER (Server): Mon Jul 10 22:59:52 CEST 2017 - Registration successfull +LOGGER (Server): Mon Jul 10 22:59:54 CEST 2017 - Invoked login with username=asd AND password=asd +LOGGER (Server): Mon Jul 10 22:59:54 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 23:00:11 CEST 2017 - Invoked register with username=dd AND password=dd +LOGGER (Server): Mon Jul 10 23:00:11 CEST 2017 - Registration successfull +LOGGER (Server): Mon Jul 10 23:00:24 CEST 2017 - Invoked login with username=dd AND password=dd +LOGGER (Server): Mon Jul 10 23:00:24 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 23:00:33 CEST 2017 - Invoked logout with username=asd AND token=pog99om5th81dl9o88fmtig5i0 +LOGGER (Server): Mon Jul 10 23:00:33 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 23:00:33 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 23:00:43 CEST 2017 - Invoked login with username=asd AND password=asd +LOGGER (Server): Mon Jul 10 23:00:43 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 23:00:50 CEST 2017 - Invoked logout with username=c AND token=bdd70nf8vfjktrlt93l92nr360 +LOGGER (Server): Mon Jul 10 23:00:50 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 23:00:50 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 23:00:52 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 23:00:52 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 23:01:08 CEST 2017 - Invoked logout with username=dd AND token=3cvvubr57vbbotbhbl2ug496 +LOGGER (Server): Mon Jul 10 23:01:08 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 23:01:08 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 23:01:11 CEST 2017 - Invoked logout with username=b AND token=b8d34dg13js8i4k9oelujb5s5f +LOGGER (Server): Mon Jul 10 23:01:11 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 23:01:11 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 23:01:12 CEST 2017 - Invoked logout with username=c AND token=vqkcc5ja8lco55nehn6pj4et9c +LOGGER (Server): Mon Jul 10 23:01:12 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 23:01:12 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 23:01:14 CEST 2017 - Invoked logout with username=asd AND token=56vd5q75e0ea537ng21gf3nd33 +LOGGER (Server): Mon Jul 10 23:01:14 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 23:01:14 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 23:01:16 CEST 2017 - Invoked logout with username=a AND token=k739cjk9n1nlcans2d1shjtrob +LOGGER (Server): Mon Jul 10 23:01:16 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 23:01:16 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 23:01:24 CEST 2017 - Invoked logout with username=d AND token=qhknt47dmd47o2dochec4qs30e +LOGGER (Server): Mon Jul 10 23:01:24 CEST 2017 - Logout successfull +LOGGER (Server): Mon Jul 10 23:01:24 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Mon Jul 10 23:01:27 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Mon Jul 10 23:01:27 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 23:01:29 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Mon Jul 10 23:01:29 CEST 2017 - Login successfull +LOGGER (Server): Mon Jul 10 23:01:33 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Mon Jul 10 23:01:33 CEST 2017 - Login successfull From 4a295690525e63ae49cb396d79bdea6cb61ed92e Mon Sep 17 00:00:00 2001 From: Lorenzo Iovino Date: Tue, 11 Jul 2017 01:25:20 +0200 Subject: [PATCH 06/25] fix calcolo punteggi + notifiche non permesse quando in gioco + ordinamento degli highscores per ordine crescente --- .idea/workspace.xml | 822 ++++++++++-------- .../src/com/texttwist/client/models/Game.java | 62 +- .../com/texttwist/client/pages/GamePage.java | 2 +- .../client/tasks/FetchHighscore.java | 4 +- .../com/texttwist/client/tasks/StartGame.java | 4 +- .../client/tasks/WaitForPlayers.java | 1 - .../texttwist/client/tasks/WaitForScore.java | 2 +- .../src/com/texttwist/client/ui/TTLetter.java | 2 +- Commons/src/constants/Config.java | 2 +- Commons/src/constants/Palette.java | 4 +- .../server/components/NotificationServer.java | 2 - .../server/components/ThreadProxy.java | 1 - .../server/tasks/ComputeHighscores.java | 11 + .../texttwist/server/tasks/ComputeScore.java | 18 +- client_1.log | 201 +++++ server.log | 129 +++ 16 files changed, 839 insertions(+), 428 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 41df94e..daf24ed 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -5,18 +5,20 @@ - - + - - - + + + + - - - + + + - + + + @@ -39,103 +41,106 @@ - - + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + + - - + + - - + + - - + + - - + + - - + + + + + + + + + + + + + + + - - - - - - - - - - - + - - + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -152,36 +157,36 @@ - Clientinter - r - regis - registerfo - registerfor - registerforco - registerforca - registerforcal - registerforcall - logout - ca - cal - call - callbackObj - c - callba - callback - callbackOn - callbackO - callbackOb - l - notificationcl - logo - n - new G - new Ga - new Game - . - .clos - .close + GAME_ST + GAME_STA + GAME_STAR + wait fo + w + wa + wai + wait for + wait for + wait fo + wait f + wait ot + wait o + wait + wait + le + lette + letters + NE + NEw invi + NEw invit + TI + TIMEOUT + TIMEOUT FI + TIMEOUT FINI + hi + hig + L + Lis + List @@ -195,24 +200,17 @@ @@ -583,6 +588,32 @@ - - + + + + + + @@ -798,12 +859,8 @@ - - - - - - + + @@ -1293,15 +1350,16 @@ - + - + @@ -1321,7 +1379,7 @@ - + @@ -1352,110 +1410,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1472,25 +1426,6 @@ - - - - - - - - - - - - - - - - - - - @@ -1501,41 +1436,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1544,46 +1444,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1640,22 +1500,6 @@ - - - - - - - - - - - - - - - - @@ -1672,16 +1516,6 @@ - - - - - - - - - - @@ -1698,14 +1532,6 @@ - - - - - - - - @@ -1722,14 +1548,6 @@ - - - - - - - - @@ -1738,22 +1556,280 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Client/src/com/texttwist/client/models/Game.java b/Client/src/com/texttwist/client/models/Game.java index 1f1245a..d51f9e0 100644 --- a/Client/src/com/texttwist/client/models/Game.java +++ b/Client/src/com/texttwist/client/models/Game.java @@ -42,7 +42,7 @@ public class Game { public DefaultListModel> globalRanks = new DefaultListModel<>(); public MulticastSocket multicastSocket; public INotificationServer server; - + public Boolean isStarted = false; public SocketChannel clientSocket = null; public Game(){ @@ -78,21 +78,23 @@ public class Game { e.printStackTrace(); } - //Visualizza popup - new TTDialog("success", "New invitation from: " + userName + "!", - new Callable() { - @Override - public Object call() throws Exception { - App.game.joinMatch(userName); - return null; - } - }, - new Callable() { - @Override - public Object call() throws Exception { - return new MenuPage(Page.window); - } - }); + if(!App.game.isStarted) { + //Visualizza popup + new TTDialog("success", "New invitation from: " + userName + "!", + new Callable() { + @Override + public Object call() throws Exception { + App.game.joinMatch(userName); + return null; + } + }, + new Callable() { + @Override + public Object call() throws Exception { + return new MenuPage(Page.window); + } + }); + } } @@ -100,29 +102,29 @@ public class Game { this.words = words; } - - public void setLetters(DefaultListModel letters){ this.letters = letters; } public void joinMatch(String matchName) { //Svuota la lista dei game pendenti e joina il game selezionato - this.pendingList.clear(); - try { - //Invia tcp req a server per dirgli che sto joinando - DefaultListModel matchNames = new DefaultListModel(); - matchNames.addElement(matchName); - Message message = new Message("JOIN_GAME", App.session.account.userName, App.session.token, matchNames); + if(!isStarted) { + this.pendingList.clear(); + try { + //Invia tcp req a server per dirgli che sto joinando + DefaultListModel matchNames = new DefaultListModel(); + matchNames.addElement(matchName); + Message message = new Message("JOIN_GAME", App.session.account.userName, App.session.token, matchNames); - byte[] byteMessage = new String(message.toString()).getBytes(); - buffer = ByteBuffer.wrap(byteMessage); - clientSocket.write(buffer); + byte[] byteMessage = new String(message.toString()).getBytes(); + buffer = ByteBuffer.wrap(byteMessage); + clientSocket.write(buffer); - new GamePage(Page.window); + new GamePage(Page.window); - } catch (IOException e) { - e.printStackTrace(); + } catch (IOException e) { + e.printStackTrace(); + } } } diff --git a/Client/src/com/texttwist/client/pages/GamePage.java b/Client/src/com/texttwist/client/pages/GamePage.java index 097c69e..9778c52 100644 --- a/Client/src/com/texttwist/client/pages/GamePage.java +++ b/Client/src/com/texttwist/client/pages/GamePage.java @@ -90,7 +90,7 @@ public class GamePage extends Page { public void showLetters(){ /* Place letters in a available random spawning point */ - for(int i = 0; i < gameController.getLetters().size(); i++){ + for(int i = 0; i < gameController.getLetters().size()-1; i++){ new TTLetter( occupyRandomPosition(), gameController.getLetters().get(i), diff --git a/Client/src/com/texttwist/client/tasks/FetchHighscore.java b/Client/src/com/texttwist/client/tasks/FetchHighscore.java index b160424..dc8ed68 100644 --- a/Client/src/com/texttwist/client/tasks/FetchHighscore.java +++ b/Client/src/com/texttwist/client/tasks/FetchHighscore.java @@ -9,6 +9,7 @@ import javax.swing.*; import java.io.IOException; import java.nio.ByteBuffer; import java.nio.channels.SocketChannel; +import java.util.*; /** * Job: FetchHighscore @@ -46,14 +47,11 @@ public class FetchHighscore extends SwingWorker { 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; diff --git a/Client/src/com/texttwist/client/tasks/StartGame.java b/Client/src/com/texttwist/client/tasks/StartGame.java index 646d625..abc0054 100644 --- a/Client/src/com/texttwist/client/tasks/StartGame.java +++ b/Client/src/com/texttwist/client/tasks/StartGame.java @@ -1,5 +1,6 @@ package com.texttwist.client.tasks; +import com.texttwist.client.App; import com.texttwist.client.pages.GamePage; import com.texttwist.client.ui.TTDialog; @@ -19,11 +20,12 @@ public class StartGame extends SwingWorker { public StartGame(DefaultListModel letters, GamePage game){ this.letters = letters; this.gamePage = game; + } @Override public Void doInBackground(){ - + App.game.isStarted=true; //Mostra pannello di conferma che le lettere sono tutte arrivate new TTDialog("success", "GamePage is ready. Press OK to start!", new Callable() { diff --git a/Client/src/com/texttwist/client/tasks/WaitForPlayers.java b/Client/src/com/texttwist/client/tasks/WaitForPlayers.java index 9dc4164..140247d 100644 --- a/Client/src/com/texttwist/client/tasks/WaitForPlayers.java +++ b/Client/src/com/texttwist/client/tasks/WaitForPlayers.java @@ -39,7 +39,6 @@ public class WaitForPlayers extends SwingWorker,Default 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(); diff --git a/Client/src/com/texttwist/client/tasks/WaitForScore.java b/Client/src/com/texttwist/client/tasks/WaitForScore.java index 17e57f5..1d8cedc 100644 --- a/Client/src/com/texttwist/client/tasks/WaitForScore.java +++ b/Client/src/com/texttwist/client/tasks/WaitForScore.java @@ -69,7 +69,7 @@ public class WaitForScore extends SwingWorker { e.printStackTrace(); } App.game.multicastSocket.close(); - + App.game.isStarted=false; try { this.callback.execute(); } catch (Exception e) { diff --git a/Client/src/com/texttwist/client/ui/TTLetter.java b/Client/src/com/texttwist/client/ui/TTLetter.java index ec50193..886f1cc 100644 --- a/Client/src/com/texttwist/client/ui/TTLetter.java +++ b/Client/src/com/texttwist/client/ui/TTLetter.java @@ -13,7 +13,7 @@ public class TTLetter extends TTLabel{ super(position, new Dimension(50,50), caption, - new Font(Palette.inputBox_font.getFontName(), Font.ITALIC, 40), + new Font(Palette.inputBox_font.getFontName(), Font.ITALIC, 20), Palette.fontColor, parent); parent.add(this); diff --git a/Commons/src/constants/Config.java b/Commons/src/constants/Config.java index eafecb0..181fb13 100644 --- a/Commons/src/constants/Config.java +++ b/Commons/src/constants/Config.java @@ -23,7 +23,7 @@ public class Config { public static String NotificationServerName ="notification"; - public static int timeoutGame = 5; + public static int timeoutGame = 10; public static String getNotificationServerURI(){ diff --git a/Commons/src/constants/Palette.java b/Commons/src/constants/Palette.java index f001982..e81b5b0 100644 --- a/Commons/src/constants/Palette.java +++ b/Commons/src/constants/Palette.java @@ -9,7 +9,7 @@ public class Palette { public static Color root_backgroundColor = new Color(145,181,88); public static Color inputBox_backgroundColor = new Color(250,250,250); //"#FAFAFA; public static Color button_backgroundColor = new Color(105,130,63); //#69823f - public static Font inputBox_font = new Font("DK Trained Monkey", Font.BOLD, 26); + public static Font inputBox_font = new Font("Arial Black", Font.BOLD, 20); public static Font password_font = new Font("Arial Black", Font.BOLD, 26); public static Color fontColor = new Color(95,0,0); public static Color registerLblBtn_color = new Color(95,0,0); @@ -20,7 +20,7 @@ public class Palette { public static Color dialog_success = new Color(53,66,32); - public static Font button_font = new Font("DK Trained Monkey", Font.BOLD, 30); + public static Font button_font = new Font("DK Trained Monkey", Font.BOLD, 25); public Palette() { //TODO fetchare dal server questi dati diff --git a/Server/src/com/texttwist/server/components/NotificationServer.java b/Server/src/com/texttwist/server/components/NotificationServer.java index 20b0a3a..7ac298b 100644 --- a/Server/src/com/texttwist/server/components/NotificationServer.java +++ b/Server/src/com/texttwist/server/components/NotificationServer.java @@ -4,13 +4,11 @@ import interfaces.INotificationClient; import interfaces.INotificationServer; import javax.swing.*; -import java.rmi.Remote; import java.rmi.RemoteException; import java.util.ArrayList; import java.util.Iterator; import java.util.List; -import static com.texttwist.client.App.session; /** * Created by loke on 19/06/2017. diff --git a/Server/src/com/texttwist/server/components/ThreadProxy.java b/Server/src/com/texttwist/server/components/ThreadProxy.java index 85034f2..099a6d1 100644 --- a/Server/src/com/texttwist/server/components/ThreadProxy.java +++ b/Server/src/com/texttwist/server/components/ThreadProxy.java @@ -140,7 +140,6 @@ public class ThreadProxy implements Callable { } catch (IOException e) { e.printStackTrace(); } - return false; } catch (InterruptedException e) { e.printStackTrace(); diff --git a/Server/src/com/texttwist/server/tasks/ComputeHighscores.java b/Server/src/com/texttwist/server/tasks/ComputeHighscores.java index 4e2a90c..fcd2c06 100644 --- a/Server/src/com/texttwist/server/tasks/ComputeHighscores.java +++ b/Server/src/com/texttwist/server/tasks/ComputeHighscores.java @@ -1,8 +1,12 @@ package com.texttwist.server.tasks; import com.texttwist.server.components.AccountsManager; +import models.User; import javax.swing.*; +import java.util.ArrayList; +import java.util.Comparator; +import java.util.List; import java.util.concurrent.Callable; /** @@ -15,6 +19,13 @@ public class ComputeHighscores implements Callable> { @Override public DefaultListModel call() throws Exception { DefaultListModel l = new DefaultListModel<>(); + + AccountsManager.getInstance().users.sort(new Comparator() { + @Override + public int compare(User o1, User o2) { + return o2.score.compareTo(o1.score); + } + }); for(int i =0; i< AccountsManager.getInstance().users.size(); i++){ l.addElement(AccountsManager.getInstance().users.get(i).userName+":"+AccountsManager.getInstance().users.get(i).score); } diff --git a/Server/src/com/texttwist/server/tasks/ComputeScore.java b/Server/src/com/texttwist/server/tasks/ComputeScore.java index 4a37b3f..3ada6c8 100644 --- a/Server/src/com/texttwist/server/tasks/ComputeScore.java +++ b/Server/src/com/texttwist/server/tasks/ComputeScore.java @@ -23,6 +23,7 @@ public class ComputeScore implements Callable { public DefaultListModel words; public final String sender; public Match match; + public DefaultListModel wordsValid; public ComputeScore(String sender, DefaultListModel words, Match match){ this.words = words; @@ -32,21 +33,20 @@ public class ComputeScore implements Callable { @Override public Integer call() throws Exception { - System.out.println("COMPUTE SCORE STARTED"); - System.out.println(match); - System.out.println("COMPUTE SCORE STAsssssRTED"); - - System.out.print("CALCOLO LO SCORE PER " + match.matchCreator); + wordsValid = new DefaultListModel<>(); Integer score = 0; for (int i = 0; i < words.size(); i++) { if (isValid(words.get(i), match.letters)) { score += words.get(i).length(); + System.out.println(words.get(i) + " is valid!" + " : " + score ); + wordsValid.addElement(words.get(i)); } } - System.out.println("SOODDISDIS"); + System.out.println(sender +" totalize SCORE = " + score); match.setScore(sender, score); + System.out.println(score); User u = AccountsManager.getInstance().findUser(sender); u.addScore(score); @@ -55,12 +55,8 @@ public class ComputeScore implements Callable { 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"); match.sendScores(); } @@ -82,7 +78,7 @@ public class ComputeScore implements Callable { return true; } - if(!isCharacterPresent){ + if(!isCharacterPresent || wordsValid.indexOf(word)!=-1){ return false; } } diff --git a/client_1.log b/client_1.log index 2f3141a..05f1ec1 100644 --- a/client_1.log +++ b/client_1.log @@ -8429,3 +8429,204 @@ LOGGER (Client1): Mon Jul 10 23:01:37 CEST 2017 - Invoked invitation with userna LOGGER (Client1): Mon Jul 10 23:01:37 CEST 2017 - L'utente è sloggato LOGGER (Client1): Mon Jul 10 23:01:37 CEST 2017 - Invoked invitation with username=b|[a, c] LOGGER (Client1): Mon Jul 10 23:01:37 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:15:26 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:15:26 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:15:26 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:15:26 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:19:45 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:20:04 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:20:14 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:21:06 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:21:27 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:22:10 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:22:16 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:22:16 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:22:16 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:22:16 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:22:16 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:22:16 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:22:16 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:22:16 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:22:16 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:22:16 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:23:15 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:23:16 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:23:23 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:23:23 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:23:23 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:23:23 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:23:54 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:28:56 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:28:58 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:29:04 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:29:04 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:29:04 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:29:04 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:30:51 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:30:53 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:31:00 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:31:00 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:31:00 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:31:00 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:33:37 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:33:39 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:33:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:33:44 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:33:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:33:44 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:37:19 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:37:23 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:37:27 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:37:27 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:37:27 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:37:27 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:38:09 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Tue Jul 11 00:38:09 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:38:09 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Tue Jul 11 00:38:09 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:38:40 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:38:40 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:38:40 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:38:40 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:47:45 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:47:46 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:47:48 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:48:00 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:48:00 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:48:00 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:48:00 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:48:00 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:48:00 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:48:05 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Tue Jul 11 00:48:05 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:48:05 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Tue Jul 11 00:48:05 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:48:05 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Tue Jul 11 00:48:05 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:49:02 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Tue Jul 11 00:49:02 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:49:02 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Tue Jul 11 00:49:02 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:49:02 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Tue Jul 11 00:49:02 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:49:37 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:49:39 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:49:40 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:49:49 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Tue Jul 11 00:49:49 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:49:49 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Tue Jul 11 00:49:49 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:49:49 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Tue Jul 11 00:49:49 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:49:55 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:49:55 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:49:55 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:49:55 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:49:55 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:49:55 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:50:38 CEST 2017 - Invoked invitation with username=b|[] +LOGGER (Client1): Tue Jul 11 00:50:38 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:50:38 CEST 2017 - Invoked invitation with username=b|[] +LOGGER (Client1): Tue Jul 11 00:50:38 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:50:38 CEST 2017 - Invoked invitation with username=b|[] +LOGGER (Client1): Tue Jul 11 00:50:38 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:50:39 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:50:39 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:50:39 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:50:39 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:50:39 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:50:39 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:50:55 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Tue Jul 11 00:50:55 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:50:55 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Tue Jul 11 00:50:55 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:50:55 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Tue Jul 11 00:50:55 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:51:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:51:10 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:51:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:51:10 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:51:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:51:10 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:51:56 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:52:00 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:52:02 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 00:52:12 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:52:12 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:52:12 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:52:12 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:52:12 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 00:52:12 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:52:26 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Tue Jul 11 00:52:26 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:52:26 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Tue Jul 11 00:52:26 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:52:26 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Tue Jul 11 00:52:26 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:52:42 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Tue Jul 11 00:52:42 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:52:42 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Tue Jul 11 00:52:42 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:52:42 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Tue Jul 11 00:52:42 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:52:48 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Tue Jul 11 00:52:48 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:52:48 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Tue Jul 11 00:52:48 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:52:48 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Tue Jul 11 00:52:48 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:53:25 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Tue Jul 11 00:53:25 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:53:25 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Tue Jul 11 00:53:25 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:53:25 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Tue Jul 11 00:53:25 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:53:30 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Tue Jul 11 00:53:30 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:53:30 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Tue Jul 11 00:53:30 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:53:30 CEST 2017 - Invoked invitation with username=b|[c] +LOGGER (Client1): Tue Jul 11 00:53:30 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 00:53:54 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Tue Jul 11 00:53:54 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:53:54 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Tue Jul 11 00:53:54 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 00:53:54 CEST 2017 - Invoked invitation with username=a|[c] +LOGGER (Client1): Tue Jul 11 00:53:54 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Tue Jul 11 01:20:28 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 01:20:30 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 01:20:36 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 01:20:36 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 01:20:36 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 01:20:36 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 01:20:56 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Tue Jul 11 01:20:56 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 01:20:56 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Tue Jul 11 01:20:56 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Tue Jul 11 01:22:20 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 01:22:21 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 01:22:28 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 01:22:40 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 01:22:40 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 01:22:40 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 01:22:40 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 01:22:40 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 01:22:40 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 01:23:00 CEST 2017 - Invoked invitation with username=c|[a, b] +LOGGER (Client1): Tue Jul 11 01:23:00 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Tue Jul 11 01:23:00 CEST 2017 - Invoked invitation with username=c|[a, b] +LOGGER (Client1): Tue Jul 11 01:23:00 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Tue Jul 11 01:23:00 CEST 2017 - Invoked invitation with username=c|[a, b] +LOGGER (Client1): Tue Jul 11 01:23:00 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 01:23:44 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Tue Jul 11 01:23:44 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Tue Jul 11 01:23:44 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Tue Jul 11 01:23:44 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 01:23:44 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Tue Jul 11 01:23:44 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 01:24:02 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Tue Jul 11 01:24:02 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Tue Jul 11 01:24:02 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Tue Jul 11 01:24:02 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 01:24:02 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Tue Jul 11 01:24:02 CEST 2017 - L'utente è sloggato diff --git a/server.log b/server.log index 1b87b03..09d4a32 100644 --- a/server.log +++ b/server.log @@ -9610,3 +9610,132 @@ LOGGER (Server): Mon Jul 10 23:01:29 CEST 2017 - Invoked login with username=b A LOGGER (Server): Mon Jul 10 23:01:29 CEST 2017 - Login successfull LOGGER (Server): Mon Jul 10 23:01:33 CEST 2017 - Invoked login with username=c AND password=c LOGGER (Server): Mon Jul 10 23:01:33 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:19:41 CEST 2017 - Server starting ... +LOGGER (Server): Tue Jul 11 00:19:41 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Tue Jul 11 00:19:41 CEST 2017 - Server started +LOGGER (Server): Tue Jul 11 00:19:41 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Tue Jul 11 00:19:47 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Tue Jul 11 00:19:47 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:20:10 CEST 2017 - Server starting ... +LOGGER (Server): Tue Jul 11 00:20:10 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Tue Jul 11 00:20:10 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Tue Jul 11 00:20:10 CEST 2017 - Server started +LOGGER (Server): Tue Jul 11 00:21:09 CEST 2017 - Invoked login with username= AND password= +LOGGER (Server): Tue Jul 11 00:21:09 CEST 2017 - Login unsuccessfull +LOGGER (Server): Tue Jul 11 00:21:14 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Tue Jul 11 00:21:14 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:21:33 CEST 2017 - Invoked login with username=aa AND password= +LOGGER (Server): Tue Jul 11 00:21:33 CEST 2017 - Login unsuccessfull +LOGGER (Server): Tue Jul 11 00:21:35 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Tue Jul 11 00:21:35 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:22:13 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Tue Jul 11 00:22:13 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:22:55 CEST 2017 - Invoked logout with username=b AND token=irpkavdo8uqhghjcu1kaseaita +LOGGER (Server): Tue Jul 11 00:22:55 CEST 2017 - Logout successfull +LOGGER (Server): Tue Jul 11 00:22:55 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Tue Jul 11 00:22:56 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Tue Jul 11 00:22:56 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:22:57 CEST 2017 - Invoked logout with username=a AND token=nuougfg3p4nv9d07la66i38v8m +LOGGER (Server): Tue Jul 11 00:22:57 CEST 2017 - Logout successfull +LOGGER (Server): Tue Jul 11 00:22:57 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Tue Jul 11 00:22:58 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Tue Jul 11 00:22:58 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:23:13 CEST 2017 - Server starting ... +LOGGER (Server): Tue Jul 11 00:23:13 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Tue Jul 11 00:23:13 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Tue Jul 11 00:23:13 CEST 2017 - Server started +LOGGER (Server): Tue Jul 11 00:23:18 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Tue Jul 11 00:23:18 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:23:20 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Tue Jul 11 00:23:20 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:23:52 CEST 2017 - Server starting ... +LOGGER (Server): Tue Jul 11 00:23:53 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Tue Jul 11 00:23:53 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Tue Jul 11 00:23:53 CEST 2017 - Server started +LOGGER (Server): Tue Jul 11 00:23:57 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Tue Jul 11 00:23:57 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:28:52 CEST 2017 - Server starting ... +LOGGER (Server): Tue Jul 11 00:28:52 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Tue Jul 11 00:28:52 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Tue Jul 11 00:28:52 CEST 2017 - Server started +LOGGER (Server): Tue Jul 11 00:29:00 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Tue Jul 11 00:29:00 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:29:02 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Tue Jul 11 00:29:02 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:30:50 CEST 2017 - Server starting ... +LOGGER (Server): Tue Jul 11 00:30:50 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Tue Jul 11 00:30:50 CEST 2017 - Server started +LOGGER (Server): Tue Jul 11 00:30:50 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Tue Jul 11 00:30:54 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Tue Jul 11 00:30:54 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:30:57 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Tue Jul 11 00:30:57 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:33:33 CEST 2017 - Server starting ... +LOGGER (Server): Tue Jul 11 00:33:33 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Tue Jul 11 00:33:33 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Tue Jul 11 00:33:33 CEST 2017 - Server started +LOGGER (Server): Tue Jul 11 00:33:40 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Tue Jul 11 00:33:40 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:33:42 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Tue Jul 11 00:33:42 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:37:14 CEST 2017 - Server starting ... +LOGGER (Server): Tue Jul 11 00:37:15 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Tue Jul 11 00:37:15 CEST 2017 - Server started +LOGGER (Server): Tue Jul 11 00:37:15 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Tue Jul 11 00:37:21 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Tue Jul 11 00:37:21 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:37:24 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Tue Jul 11 00:37:24 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:47:43 CEST 2017 - Server starting ... +LOGGER (Server): Tue Jul 11 00:47:43 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Tue Jul 11 00:47:43 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Tue Jul 11 00:47:43 CEST 2017 - Server started +LOGGER (Server): Tue Jul 11 00:47:49 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Tue Jul 11 00:47:49 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:47:52 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Tue Jul 11 00:47:52 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:47:55 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Tue Jul 11 00:47:55 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:49:36 CEST 2017 - Server starting ... +LOGGER (Server): Tue Jul 11 00:49:36 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Tue Jul 11 00:49:36 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Tue Jul 11 00:49:36 CEST 2017 - Server started +LOGGER (Server): Tue Jul 11 00:49:41 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Tue Jul 11 00:49:41 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:49:44 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Tue Jul 11 00:49:44 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:49:47 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Tue Jul 11 00:49:47 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:50:33 CEST 2017 - Invoked logout with username=a AND token=vbqsba0bupve4h89bau5nrplpm +LOGGER (Server): Tue Jul 11 00:50:33 CEST 2017 - Logout successfull +LOGGER (Server): Tue Jul 11 00:50:33 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Tue Jul 11 00:50:36 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Tue Jul 11 00:50:36 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:51:54 CEST 2017 - Server starting ... +LOGGER (Server): Tue Jul 11 00:51:54 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Tue Jul 11 00:51:54 CEST 2017 - Server started +LOGGER (Server): Tue Jul 11 00:51:54 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Tue Jul 11 00:52:03 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Tue Jul 11 00:52:03 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:52:05 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Tue Jul 11 00:52:05 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 00:52:07 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Tue Jul 11 00:52:07 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 01:20:27 CEST 2017 - Server starting ... +LOGGER (Server): Tue Jul 11 01:20:27 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Tue Jul 11 01:20:27 CEST 2017 - Server started +LOGGER (Server): Tue Jul 11 01:20:27 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Tue Jul 11 01:20:31 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Tue Jul 11 01:20:31 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 01:20:34 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Tue Jul 11 01:20:34 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 01:22:18 CEST 2017 - Server starting ... +LOGGER (Server): Tue Jul 11 01:22:18 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Tue Jul 11 01:22:18 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Tue Jul 11 01:22:18 CEST 2017 - Server started +LOGGER (Server): Tue Jul 11 01:22:22 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Tue Jul 11 01:22:22 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 01:22:25 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Tue Jul 11 01:22:25 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 01:22:30 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Tue Jul 11 01:22:30 CEST 2017 - Login successfull From 406a5647b87e2820d16299ae1c6624e43971eff6 Mon Sep 17 00:00:00 2001 From: Lorenzo Iovino Date: Tue, 11 Jul 2017 11:16:12 +0200 Subject: [PATCH 07/25] Invio del token obbligatorio e gestione dell'errore nel caso non venga inviato --- .idea/workspace.xml | 765 +++++++++--------- .../com/texttwist/client/tasks/SendWords.java | 2 +- .../server/components/GameServer.java | 9 +- .../server/components/ThreadProxy.java | 14 +- .../texttwist/server/tasks/ReceiveWords.java | 32 +- .../texttwist/server/tasks/TokenInvalid.java | 38 + client_1.log | 68 ++ server.log | 27 + 8 files changed, 533 insertions(+), 422 deletions(-) create mode 100644 Server/src/com/texttwist/server/tasks/TokenInvalid.java diff --git a/.idea/workspace.xml b/.idea/workspace.xml index daf24ed..70def8e 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -5,20 +5,12 @@ + - - - - - - - - - - + + - - + @@ -41,21 +33,11 @@ - + - - - - - - - - - - - - + + @@ -64,83 +46,90 @@ - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -157,36 +146,36 @@ - GAME_ST - GAME_STA - GAME_STAR - wait fo - w - wa - wai - wait for - wait for - wait fo - wait f - wait ot - wait o - wait - wait - le - lette - letters - NE - NEw invi - NEw invit - TI - TIMEOUT - TIMEOUT FI - TIMEOUT FINI - hi - hig - L - Lis - List + HUGHSCR + HUGHSCO + HUGHSC + HUGHS + HUGH + HUG + HU + H + HIGH + HIGHSCOR + HIGHSCORE + s + sesso + sess + sessionMane + sessionMana + sessionMan + sessionMa + sessionM + sValid + session + WOR + WO + TO + TOKEN NON + TOKEN NON + WORDS + channel + bufferMEssa + bufferMess @@ -200,7 +189,6 @@ @@ -304,7 +293,6 @@ - @@ -746,6 +734,7 @@ + @@ -1350,47 +1339,48 @@ - + + - - - - - - - - - - - - + + + - - + + + + + + + + + + @@ -1410,128 +1400,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1556,14 +1424,6 @@ - - - - - - - - @@ -1590,14 +1450,6 @@ - - - - - - - - @@ -1610,7 +1462,6 @@ - @@ -1618,7 +1469,6 @@ - @@ -1626,15 +1476,6 @@ - - - - - - - - - @@ -1654,33 +1495,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1689,14 +1503,6 @@ - - - - - - - - @@ -1705,27 +1511,10 @@ - - - - - - - - - - - - - - - - - @@ -1747,89 +1536,281 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - + - - + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Client/src/com/texttwist/client/tasks/SendWords.java b/Client/src/com/texttwist/client/tasks/SendWords.java index 63e048a..64e953e 100644 --- a/Client/src/com/texttwist/client/tasks/SendWords.java +++ b/Client/src/com/texttwist/client/tasks/SendWords.java @@ -36,7 +36,7 @@ public class SendWords extends SwingWorker { ByteBuffer buffer = ByteBuffer.allocate(1024); buffer.clear(); System.out.println("SENDER=" + App.session.account.userName); - Message msg = new Message("WORDS", App.session.account.userName, "", words); + Message msg = new Message("WORDS", App.session.account.userName, App.session.token, words); String sentence = msg.toString(); buffer.put(sentence.getBytes()); buffer.flip(); diff --git a/Server/src/com/texttwist/server/components/GameServer.java b/Server/src/com/texttwist/server/components/GameServer.java index 8ce4647..a492c67 100644 --- a/Server/src/com/texttwist/server/components/GameServer.java +++ b/Server/src/com/texttwist/server/components/GameServer.java @@ -32,7 +32,10 @@ public class GameServer implements Runnable{ private ExecutorService threadPool = Executors.newCachedThreadPool(); private String dictionaryPath = "./Server/resources/dictionary"; public static Dictionary dict; + SocketChannel client; ByteBuffer bufferWords = ByteBuffer.allocate(1024); + ByteBuffer bufferMessages = ByteBuffer.allocate(1024); + public static List activeMatches = Collections.synchronizedList(new ArrayList<>()); @@ -58,7 +61,7 @@ public class GameServer implements Runnable{ datagramChannel.connect(address); Logger.write("GamePage Service is running at "+this.serverPort+" port..."); - wordsReceiver = new ReceiveWords(datagramChannel, bufferWords); + wordsReceiver = new ReceiveWords(datagramChannel, bufferWords, bufferMessages, client); threadPool.submit(wordsReceiver); } catch (IOException e) { @@ -75,9 +78,9 @@ public class GameServer implements Runnable{ Iterator iter = selector.selectedKeys().iterator(); while (iter.hasNext()) { - ByteBuffer bufferMessages = ByteBuffer.allocate(1024); + bufferMessages = ByteBuffer.allocate(1024); bufferMessages.clear(); - SocketChannel client = null; + client = null; SelectionKey key = iter.next(); iter.remove(); diff --git a/Server/src/com/texttwist/server/components/ThreadProxy.java b/Server/src/com/texttwist/server/components/ThreadProxy.java index 099a6d1..4d94634 100644 --- a/Server/src/com/texttwist/server/components/ThreadProxy.java +++ b/Server/src/com/texttwist/server/components/ThreadProxy.java @@ -1,6 +1,7 @@ package com.texttwist.server.components; import com.sun.org.apache.xpath.internal.operations.Bool; +import com.texttwist.client.App; import com.texttwist.server.models.Match; import com.texttwist.server.tasks.*; import constants.Config; @@ -38,16 +39,11 @@ public class ThreadProxy implements Callable { } - - private Boolean isValidToken(String token){ - return SessionsManager.getInstance().isValidToken(token); - } - @Override public Boolean call() { bufferMessage = ByteBuffer.allocate(1024); byte[] byteMessage = null; - if(isValidToken(request.token)){ + if(SessionsManager.getInstance().isValidToken(request.token)){ switch(request.message){ case "START_GAME": Future onlineUsers = threadPool.submit(new CheckOnlineUsers(request.data)); @@ -177,7 +173,7 @@ public class ThreadProxy implements Callable { System.out.println("INVIO GAME_STARTED "+ s); socketClient.write(bufferMessage); } catch (IOException e) { - + e.printStackTrace(); } } @@ -199,10 +195,8 @@ public class ThreadProxy implements Callable { socketChannel.write(bufferMessage); matchNotAvailable = true; } - //Match non disponibile } - //NON FARE NULLA, ASPETA GLI ALTRI } } catch (InterruptedException e) { e.printStackTrace(); @@ -218,7 +212,7 @@ public class ThreadProxy implements Callable { } } else { - System.out.print("TOKEN NON VALIDO"); + threadPool.submit(new TokenInvalid(request.sender, socketChannel, bufferMessage)); return false; } diff --git a/Server/src/com/texttwist/server/tasks/ReceiveWords.java b/Server/src/com/texttwist/server/tasks/ReceiveWords.java index 19c69e4..cb5bbc1 100644 --- a/Server/src/com/texttwist/server/tasks/ReceiveWords.java +++ b/Server/src/com/texttwist/server/tasks/ReceiveWords.java @@ -1,26 +1,17 @@ package com.texttwist.server.tasks; -import com.texttwist.server.Server; -import com.texttwist.server.components.GameServer; +import com.texttwist.server.components.SessionsManager; import com.texttwist.server.models.Match; import constants.Config; import models.Message; -import javax.swing.*; -import javax.xml.crypto.Data; import java.net.*; import java.nio.ByteBuffer; import java.nio.channels.DatagramChannel; -import java.nio.channels.SelectionKey; -import java.nio.channels.Selector; import java.nio.channels.SocketChannel; -import java.util.Arrays; import java.util.concurrent.Callable; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; -import java.util.concurrent.Future; - -import static com.texttwist.server.components.GameServer.activeMatches; /** * Created by loke on 27/06/2017. @@ -30,12 +21,16 @@ public class ReceiveWords implements Callable{ protected ExecutorService threadPool = Executors.newCachedThreadPool(); public DatagramChannel channel; - ByteBuffer buffer; + ByteBuffer bufferWords; + ByteBuffer bufferMessages; + public SocketChannel socketChannel; - public ReceiveWords(DatagramChannel channel, ByteBuffer buffer) { - this.buffer = buffer; + public ReceiveWords(DatagramChannel channel, ByteBuffer buffer, ByteBuffer bufferMessages, SocketChannel socketChannel) { + this.bufferWords = buffer; this.channel = channel; + this.bufferMessages = bufferMessages; + this.socketChannel = socketChannel; } @Override @@ -58,9 +53,14 @@ public class ReceiveWords implements Callable{ System.out.println(rcv); if (rcv.startsWith("MESSAGE")) { msg = Message.toMessage(rcv); - System.out.println(msg.sender); - Match match = Match.findMatchByPlayer(msg.sender); - threadPool.submit(new ComputeScore(msg.sender, msg.data, match)); + if(SessionsManager.getInstance().isValidToken(msg.token)) { + System.out.println(msg.sender); + Match match = Match.findMatchByPlayer(msg.sender); + threadPool.submit(new ComputeScore(msg.sender, msg.data, match)); + } else { + threadPool.submit(new TokenInvalid(msg.sender, socketChannel, bufferMessages)); + return false; + } } } diff --git a/Server/src/com/texttwist/server/tasks/TokenInvalid.java b/Server/src/com/texttwist/server/tasks/TokenInvalid.java new file mode 100644 index 0000000..22245b2 --- /dev/null +++ b/Server/src/com/texttwist/server/tasks/TokenInvalid.java @@ -0,0 +1,38 @@ +package com.texttwist.server.tasks; + +import com.texttwist.server.Server; +import models.Message; + +import javax.swing.*; +import java.nio.ByteBuffer; +import java.nio.channels.Channel; +import java.nio.channels.SocketChannel; +import java.util.concurrent.Callable; + +/** + * Created by loke on 11/07/2017. + */ +public class TokenInvalid implements Callable { + private String sender; + private ByteBuffer buffer; + private SocketChannel channel; + + public TokenInvalid (String sender, SocketChannel channel, ByteBuffer buffer){ + this.sender=sender; + this.buffer=buffer; + this.channel=channel; + } + + @Override + public Boolean call()throws Exception { + System.out.print("TOKEN NON VALIDO"); + buffer = ByteBuffer.allocate(1024); + Message msg = new Message("MATCH_NOT_AVAILABLE", "", null, new DefaultListModel<>()); + buffer.clear(); + byte[] byteMessage = msg.toString().getBytes(); + buffer = ByteBuffer.wrap(byteMessage); + channel.write(buffer); + return false; + } + +} \ No newline at end of file diff --git a/client_1.log b/client_1.log index 05f1ec1..a95539a 100644 --- a/client_1.log +++ b/client_1.log @@ -8630,3 +8630,71 @@ LOGGER (Client1): Tue Jul 11 01:24:02 CEST 2017 - Invoked invitation with userna LOGGER (Client1): Tue Jul 11 01:24:02 CEST 2017 - L'utente è sloggato LOGGER (Client1): Tue Jul 11 01:24:02 CEST 2017 - Invoked invitation with username=c|[a] LOGGER (Client1): Tue Jul 11 01:24:02 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 10:45:24 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 10:45:26 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 10:45:31 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 10:45:31 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 10:45:31 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 10:45:31 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 11:07:03 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 11:07:05 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 11:07:14 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 11:07:14 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 11:07:14 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Tue Jul 11 11:07:14 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 11:07:18 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 11:07:28 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Tue Jul 11 11:07:28 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Tue Jul 11 11:07:28 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Tue Jul 11 11:07:28 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 11:07:28 CEST 2017 - Invoked invitation with username=c|[a] +LOGGER (Client1): Tue Jul 11 11:07:28 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 11:07:36 CEST 2017 - Client starting ... +LOGGER (Client1): Tue Jul 11 11:07:44 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Tue Jul 11 11:07:44 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 11:07:44 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Tue Jul 11 11:07:44 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 11:07:44 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Tue Jul 11 11:07:44 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 11:07:44 CEST 2017 - Invoked invitation with username=b|[d] +LOGGER (Client1): Tue Jul 11 11:07:44 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 11:07:58 CEST 2017 - Invoked invitation with username=aa|[c] +LOGGER (Client1): Tue Jul 11 11:07:58 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 11:07:58 CEST 2017 - Invoked invitation with username=aa|[c] +LOGGER (Client1): Tue Jul 11 11:07:58 CEST 2017 - aa ti ha sfidato! +LOGGER (Client1): Tue Jul 11 11:07:58 CEST 2017 - Invoked invitation with username=aa|[c] +LOGGER (Client1): Tue Jul 11 11:07:58 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 11:07:58 CEST 2017 - Invoked invitation with username=aa|[c] +LOGGER (Client1): Tue Jul 11 11:07:58 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 11:08:16 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Tue Jul 11 11:08:16 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 11:08:16 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Tue Jul 11 11:08:16 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Tue Jul 11 11:08:16 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Tue Jul 11 11:08:16 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 11:08:16 CEST 2017 - Invoked invitation with username=d|[c] +LOGGER (Client1): Tue Jul 11 11:08:16 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 11:08:22 CEST 2017 - Invoked invitation with username=b|[aa] +LOGGER (Client1): Tue Jul 11 11:08:22 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 11:08:22 CEST 2017 - Invoked invitation with username=b|[aa] +LOGGER (Client1): Tue Jul 11 11:08:22 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 11:08:22 CEST 2017 - Invoked invitation with username=b|[aa] +LOGGER (Client1): Tue Jul 11 11:08:22 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 11:08:22 CEST 2017 - Invoked invitation with username=b|[aa] +LOGGER (Client1): Tue Jul 11 11:08:22 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Tue Jul 11 11:08:52 CEST 2017 - Invoked invitation with username=d|[b, aa] +LOGGER (Client1): Tue Jul 11 11:08:52 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Tue Jul 11 11:08:52 CEST 2017 - Invoked invitation with username=d|[b, aa] +LOGGER (Client1): Tue Jul 11 11:08:52 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 11:08:52 CEST 2017 - Invoked invitation with username=d|[b, aa] +LOGGER (Client1): Tue Jul 11 11:08:52 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 11:08:52 CEST 2017 - Invoked invitation with username=d|[b, aa] +LOGGER (Client1): Tue Jul 11 11:08:52 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Tue Jul 11 11:13:13 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Tue Jul 11 11:13:13 CEST 2017 - d ti ha sfidato! +LOGGER (Client1): Tue Jul 11 11:13:13 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Tue Jul 11 11:13:13 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 11:13:13 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Tue Jul 11 11:13:13 CEST 2017 - L'utente è sloggato +LOGGER (Client1): Tue Jul 11 11:13:13 CEST 2017 - Invoked invitation with username=d|[b] +LOGGER (Client1): Tue Jul 11 11:13:13 CEST 2017 - L'utente è sloggato diff --git a/server.log b/server.log index 09d4a32..b09d49f 100644 --- a/server.log +++ b/server.log @@ -9739,3 +9739,30 @@ LOGGER (Server): Tue Jul 11 01:22:25 CEST 2017 - Invoked login with username=b A LOGGER (Server): Tue Jul 11 01:22:25 CEST 2017 - Login successfull LOGGER (Server): Tue Jul 11 01:22:30 CEST 2017 - Invoked login with username=c AND password=c LOGGER (Server): Tue Jul 11 01:22:30 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 10:45:22 CEST 2017 - Server starting ... +LOGGER (Server): Tue Jul 11 10:45:22 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Tue Jul 11 10:45:22 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Tue Jul 11 10:45:22 CEST 2017 - Server started +LOGGER (Server): Tue Jul 11 10:45:27 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Tue Jul 11 10:45:27 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 10:45:29 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Tue Jul 11 10:45:29 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 11:07:02 CEST 2017 - Server starting ... +LOGGER (Server): Tue Jul 11 11:07:02 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Tue Jul 11 11:07:02 CEST 2017 - GamePage Service is running at 10000 port... +LOGGER (Server): Tue Jul 11 11:07:02 CEST 2017 - Server started +LOGGER (Server): Tue Jul 11 11:07:06 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Tue Jul 11 11:07:06 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 11:07:12 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Tue Jul 11 11:07:12 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 11:07:19 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Tue Jul 11 11:07:19 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 11:07:37 CEST 2017 - Invoked login with username=d AND password=d +LOGGER (Server): Tue Jul 11 11:07:37 CEST 2017 - Login successfull +LOGGER (Server): Tue Jul 11 11:07:50 CEST 2017 - Invoked logout with username=a AND token=8l9ott4fctua8ii3ri4a43u8ls +LOGGER (Server): Tue Jul 11 11:07:50 CEST 2017 - Logout successfull +LOGGER (Server): Tue Jul 11 11:07:50 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Tue Jul 11 11:07:54 CEST 2017 - Invoked register with username=aa AND password=aa +LOGGER (Server): Tue Jul 11 11:07:54 CEST 2017 - Registration successfull +LOGGER (Server): Tue Jul 11 11:07:56 CEST 2017 - Invoked login with username=aa AND password=aa +LOGGER (Server): Tue Jul 11 11:07:56 CEST 2017 - Login successfull From eac6e43420a34bd3ad04d3f7e37a4055fad79584 Mon Sep 17 00:00:00 2001 From: Lorenzo Iovino Date: Tue, 11 Jul 2017 19:20:06 +0200 Subject: [PATCH 08/25] implementazione persistenza --- .idea/artifacts/TextTwist_jar.xml | 13 + .idea/libraries/redis_clients_jedis_2_9_0.xml | 11 + .idea/workspace.xml | 1214 +++++++++-------- .../client/controllers/GameController.java | 9 - .../client/controllers/MenuController.java | 2 +- .../src/com/texttwist/client/models/Game.java | 71 +- .../com/texttwist/client/pages/GamePage.java | 17 +- .../client/pages/HighscoresPage.java | 3 +- .../com/texttwist/client/pages/HomePage.java | 2 +- .../client/pages/MatchRequestsPage.java | 2 - .../client/pages/MatchSetupPage.java | 2 +- .../com/texttwist/client/pages/MenuPage.java | 2 +- .../src/com/texttwist/client/pages/Page.java | 22 +- .../texttwist/client/pages/RegisterPage.java | 5 +- .../client/services/AuthService.java | 12 +- .../client/services/HighscoresService.java | 39 - .../client/services/NotificationClient.java | 6 +- .../com/texttwist/client/tasks/StartGame.java | 4 +- .../client/tasks/WaitForPlayers.java | 2 +- .../texttwist/client/tasks/WaitForScore.java | 3 +- Commons/src/constants/Config.java | 1 - Commons/src/models/User.java | 4 +- META-INF/MANIFEST.MF | 3 + Server/Server.iml | 2 + Server/src/com/texttwist/server/Server.java | 10 +- .../server/components/AccountsManager.java | 56 +- .../server/components/GameServer.java | 2 +- .../server/components/JedisService.java | 96 ++ .../server/tasks/ComputeHighscores.java | 3 + .../texttwist/server/tasks/ComputeScore.java | 4 + client_1.log | 285 ++++ notificationServer.log | 653 +++++++++ server.log | 52 + 33 files changed, 1876 insertions(+), 736 deletions(-) create mode 100644 .idea/artifacts/TextTwist_jar.xml create mode 100644 .idea/libraries/redis_clients_jedis_2_9_0.xml delete mode 100644 Client/src/com/texttwist/client/services/HighscoresService.java create mode 100644 META-INF/MANIFEST.MF create mode 100644 Server/src/com/texttwist/server/components/JedisService.java create mode 100644 notificationServer.log diff --git a/.idea/artifacts/TextTwist_jar.xml b/.idea/artifacts/TextTwist_jar.xml new file mode 100644 index 0000000..da74d61 --- /dev/null +++ b/.idea/artifacts/TextTwist_jar.xml @@ -0,0 +1,13 @@ + + + $PROJECT_DIR$/out/artifacts/TextTwist_jar + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/redis_clients_jedis_2_9_0.xml b/.idea/libraries/redis_clients_jedis_2_9_0.xml new file mode 100644 index 0000000..3799a93 --- /dev/null +++ b/.idea/libraries/redis_clients_jedis_2_9_0.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 70def8e..007aa13 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,16 +1,43 @@ + + + + + - + + + - + + + + + + + + + + + + + + + + + + + + + - - + + @@ -23,71 +50,22 @@ - + com.texttwist.client.* com.texttwist.client.* + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -95,31 +73,31 @@ - - + + - - + + - - + + - - + + - - + + - - + + @@ -128,8 +106,67 @@ - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -146,41 +183,166 @@ - HUGHSCR - HUGHSCO - HUGHSC - HUGHS - HUGH - HUG - HU + highscorelist + gameBox H - HIGH - HIGHSCOR - HIGHSCORE - s - sesso - sess - sessionMane - sessionMana - sessionMan - sessionMa - sessionM - sValid - session - WOR - WO - TO - TOKEN NON - TOKEN NON - WORDS - channel - bufferMEssa - bufferMess + Hi + Higscr + Higsc + Higs + Hig + Highs + HighscoreSe + HighscoreS + Highscore + HighscoresS + HighscoresSe + HighscoresSer + us + users.ad + users.add + J + Je + Jedis + JedisSe + JedisSer + JedisServi + JedisServic + JedisService + JedisService. + JedisService.g + r + remove + + C:\Users\loke\TextTwist\out\production + C:\Users\loke\TextTwist\ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - @@ -296,6 +459,16 @@ + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -576,32 +683,6 @@ - - - - - - - - - - - - - - - - - - - - + + @@ -848,8 +925,12 @@ - - + + + + + + @@ -1340,47 +1421,51 @@ - + + + + + - - + - - - - - - - - - - + + + + + + + + + + + + - - @@ -1391,7 +1476,7 @@ - @@ -1400,235 +1485,139 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + - - + - + - - - + + - - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -1643,77 +1632,13 @@ - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -1721,106 +1646,248 @@ - + - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + - - + + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + TextTwist:jar @@ -1840,6 +1907,7 @@ + jedis-2.1.0-sources - Client + Server - com.github.cliftonlabs:json-simple:2.1.2 + redis.clients:jedis:2.9.0