From cb63402b9f232f964f53643978266717ae517201 Mon Sep 17 00:00:00 2001 From: Lorenzo Iovino Date: Sun, 9 Jul 2017 16:45:46 +0200 Subject: [PATCH] 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