diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 6027cfe..e8fbf0a 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -5,20 +5,21 @@ - - - - - + + + + + - - - - - + + + + + + @@ -31,7 +32,7 @@ - + com.texttwist.client.* @@ -41,47 +42,15 @@ - - + + - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -90,8 +59,28 @@ - - + + + + + + + + + + + + + + + + + + + + + + @@ -99,11 +88,51 @@ - - + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -111,28 +140,12 @@ - - + + - - - - - - - - - - - - - - - - - - - + + + @@ -148,36 +161,36 @@ - Joi - Join - Joine - Joined - new - Buffer - MatchTim - clientSocket - .c - socketChannel - . - .clo - .clos - .close - .close( - .close() - star - starti - starting - starting ca - starting cal - starting call + GAME_STARTED + G + GAME: + GAME + GAME_ST + GAME_STA W - WAIT - WAIT - WAIT f - socket - WAIT fri - fi - final + Wa + Wai + Wait + WaitF + WaitFor + HE + HEY + F + Futur + Future + f + future + a + addT + addTi + addTim + addTime + addTimer + TIME + TIMEO + TIMEOU + TIMEOUT + fetc @@ -191,14 +204,6 @@ @@ -257,7 +270,7 @@ @@ -290,6 +303,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -580,6 +677,32 @@ + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -734,12 +773,8 @@ - - - - - - + + @@ -748,8 +783,12 @@ - - + + + + + + @@ -1214,47 +1253,49 @@ - + + + - - + - + + + + + + + + + + + - - - - + + - - - - + - - - - - @@ -1265,7 +1306,7 @@ - @@ -1274,64 +1315,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1353,23 +1336,6 @@ - - - - - - - - - - - - - - - - - @@ -1381,14 +1347,6 @@ - - - - - - - - @@ -1405,14 +1363,7 @@ - - - - - - - - + @@ -1429,17 +1380,6 @@ - - - - - - - - - - - @@ -1456,22 +1396,6 @@ - - - - - - - - - - - - - - - - @@ -1480,38 +1404,7 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -1536,42 +1429,112 @@ - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + - - - - - - - - - - - - - - - - - - - - - - - - @@ -1580,60 +1543,176 @@ - + - - - - - + + + - + - - - - - - - + + + - + - - - - - - - - - - - - + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + + diff --git a/Client/src/com/texttwist/client/pages/Game.java b/Client/src/com/texttwist/client/pages/Game.java index 4de11f8..c2c5493 100644 --- a/Client/src/com/texttwist/client/pages/Game.java +++ b/Client/src/com/texttwist/client/pages/Game.java @@ -1,35 +1,61 @@ package com.texttwist.client.pages; -import com.texttwist.client.App; +import com.texttwist.client.tasks.StartGame; import constants.Palette; import com.texttwist.client.ui.*; import javax.swing.*; import java.awt.*; import java.io.IOException; -import java.util.concurrent.Callable; -import java.util.concurrent.ThreadLocalRandom; +import java.util.concurrent.*; /** * Created by loke on 14/06/2017. */ public class Game extends Page { - private TTContainer gamecontainer; - private DefaultListModel letters = new DefaultListModel(); - private DefaultListModel words = new DefaultListModel(); - private DefaultListModel letterSpawningPoint = new DefaultListModel(); + private TTContainer gameContainer; + public GameController gameController; + public DefaultListModel letterSpawningPoint = new DefaultListModel(); + + public Timer timer = null; + + public Point getRandomPosition(){ + if(letterSpawningPoint.size()>1) { + int index = ThreadLocalRandom.current().nextInt(0, letterSpawningPoint.size() - 1); + Point placeholder = letterSpawningPoint.get(index); + letterSpawningPoint.remove(index); + return placeholder; + } + return new Point(0,0); + } + + public Thread startGame(){ + Thread t = new Thread(new StartGame(this)); + t.start(); + return t; + } + + + public void showLetters(){ + for(int i = 0; i< this.gameController.letters.size(); i++){ + TTLetter letter = new TTLetter( + getRandomPosition(), + this.gameController.letters.get(i), + gameContainer); + } + + window.repaint(); + window.revalidate(); + } public Game(JFrame window) throws IOException { super(window); createUIComponents(); - letters = fetchLetters(); + gameController = new GameController(); letterSpawningPoint = setLetterSpawningPoint(); - if(letters.size() > 0) { - showLetters(); - } else { - joiningPhase(); - } + this.gameController.waitForPlayers(); + startGame(); window.setVisible(true); } @@ -59,61 +85,15 @@ public class Game extends Page { return l; } - private DefaultListModel fetchLetters(){ - DefaultListModel l = new DefaultListModel();/* - l.addElement("C"); - l.addElement("A"); - l.addElement("E"); - l.addElement("P"); - l.addElement("C"); - l.addElement("I"); - l.addElement("L"); - l.addElement("S");*/ - - return l; - } - private Callable getWords(){ return null; } - public boolean addWordToWordsList(String word) { - words.addElement(word); - return true; - } - - private Point getRandomPosition(){ - if(letterSpawningPoint.size()>1) { - int index = ThreadLocalRandom.current().nextInt(0, letterSpawningPoint.size() - 1); - Point placeholder = letterSpawningPoint.get(index); - letterSpawningPoint.remove(index); - return placeholder; - } - return new Point(0,0); - } - - public void showLetters(){ - for(int i = 0; i< letters.size(); i++){ - TTLetter letter = new TTLetter( - getRandomPosition(), - letters.get(i), - gamecontainer); - } - window.repaint(); - window.revalidate(); - } - - public void joiningPhase(){ - //Visualizza popup - new TTDialog("success", "Waiting for users joins",null,null); - window.repaint(); - window.revalidate(); - } @Override public void createUIComponents() throws IOException { addLogo(root); - gamecontainer = new TTContainer( + gameContainer = new TTContainer( null, new Dimension(1150,220), Palette.root_backgroundColor, @@ -126,7 +106,7 @@ public class Game extends Page { "Word!", new DefaultListModel(), getWords(), - gamecontainer); + gameContainer); addFooter(root); addNext(footer, @@ -140,10 +120,11 @@ public class Game extends Page { } }); - addTimer(footer, + timer = addTimer(footer, new Font(Palette.inputBox_font.getFontName(), Font.BOLD, 40), null, - "00:00"); + "00:00", + 120); } } diff --git a/Client/src/com/texttwist/client/pages/GameController.java b/Client/src/com/texttwist/client/pages/GameController.java new file mode 100644 index 0000000..1280140 --- /dev/null +++ b/Client/src/com/texttwist/client/pages/GameController.java @@ -0,0 +1,33 @@ +package com.texttwist.client.pages; + +import com.texttwist.client.App; +import com.texttwist.client.ui.TTDialog; +import com.texttwist.client.ui.TTLetter; + +import javax.swing.*; +import java.awt.*; +import java.io.IOException; +import java.util.concurrent.ThreadLocalRandom; + +/** + * Created by loke on 25/06/2017. + */ +public class GameController { + + + public DefaultListModel letters = new DefaultListModel(); + public DefaultListModel words = new DefaultListModel(); + + public GameController(){ + } + + public DefaultListModel waitForPlayers() { + return App.matchService.waitForPlayers(); + } + + public boolean addWordToWordsList(String word) { + words.addElement(word); + return true; + } + +} diff --git a/Client/src/com/texttwist/client/pages/MatchService.java b/Client/src/com/texttwist/client/pages/MatchService.java index b9637b5..14fa364 100644 --- a/Client/src/com/texttwist/client/pages/MatchService.java +++ b/Client/src/com/texttwist/client/pages/MatchService.java @@ -1,18 +1,18 @@ package com.texttwist.client.pages; import com.texttwist.client.App; +import com.texttwist.client.tasks.InvitePlayers; +import com.texttwist.client.tasks.WaitForPlayers; import com.texttwist.client.ui.TTDialog; import constants.Config; import models.Message; -import models.Response; -import org.json.simple.JsonObject; import javax.swing.*; import java.io.*; import java.net.InetSocketAddress; import java.nio.ByteBuffer; import java.nio.channels.SocketChannel; -import java.util.concurrent.Callable; +import java.util.concurrent.*; /** * Created by loke on 18/06/2017. @@ -21,6 +21,9 @@ public class MatchService { public DefaultListModel pendingList = new DefaultListModel(); ByteBuffer buffer = ByteBuffer.allocate(1024); + + public DefaultListModel words = new DefaultListModel(); + SocketChannel clientSocket = null; public MatchService(){ @@ -44,22 +47,34 @@ public class MatchService { } //Visualizza popup new TTDialog("success", "New invitation from: " + userName + "!", - new Callable() { - @Override - public Object call() throws Exception { - App.matchService.joinMatch(userName); - return null; - } - }, - new Callable() { - @Override - public Object call() throws Exception { - return new Menu(Page.window); - } - }); + new Callable() { + @Override + public Object call() throws Exception { + App.matchService.joinMatch(userName); + return null; + } + }, + new Callable() { + @Override + public Object call() throws Exception { + return new Menu(Page.window); + } + }); } + public DefaultListModel waitForPlayers(){ + DefaultListModel words = new DefaultListModel<>(); + SwingWorker worker = new WaitForPlayers(clientSocket, words); + worker.execute(); + return null; + } + + + public void setWords(DefaultListModel words){ + this.words = words; + } + public void joinMatch(String matchName) { //Svuota la lista dei match pendenti e joina il match selezionato this.pendingList.clear(); @@ -72,6 +87,7 @@ public class MatchService { byte[] byteMessage = new String(message.toString()).getBytes(); buffer = ByteBuffer.wrap(byteMessage); clientSocket.write(buffer); + new Game(Page.window); } catch (IOException e) { @@ -81,62 +97,9 @@ public class MatchService { public Object play(DefaultListModel userNames) throws IOException { - - Message message = new Message("START_GAME", App.sessionService.account.userName, App.sessionService.account.token, userNames); - - byte[] byteMessage = new String(message.toString()).getBytes(); - buffer = ByteBuffer.wrap(byteMessage); - clientSocket.write(buffer); - - while (true) { - if (clientSocket.read(buffer) != -1) { - buffer.clear(); - - String line = new String(buffer.array(), buffer.position(), buffer.remaining()); - if (line.startsWith("MESSAGE")) { - - Message msg = Message.toMessage(line); - if (msg.message.equals("USER_NOT_ONLINE")) { - new TTDialog("alert", "Users not online!", - new Callable() { - @Override - public Object call() throws Exception { - return null; - } - }, null); - return null; - } - - if (msg.message.equals("INVITES_ALL_SENDED")) { - // clientSocket.close(); - new TTDialog("success", "Invite all sended!", - new Callable() { - @Override - public Object call() throws Exception { - //In attesa dei giocatori - return new Game(Page.window); - } - }, null); - return null; - - } - - if (msg.message.equals("TIMEOUT")) { - clientSocket.close(); - new TTDialog("alert", "TIMEOUT!", - new Callable() { - @Override - public Object call() throws Exception { - return new Menu(Page.window); - - } - }, null); - return null; - } - } - - } - } + SwingWorker worker = new InvitePlayers(userNames,clientSocket); + worker.execute(); + return null; } public void addToPendingList(String username) throws IOException { diff --git a/Client/src/com/texttwist/client/pages/MatchSetupController.java b/Client/src/com/texttwist/client/pages/MatchSetupController.java index f178895..1d0026f 100644 --- a/Client/src/com/texttwist/client/pages/MatchSetupController.java +++ b/Client/src/com/texttwist/client/pages/MatchSetupController.java @@ -23,4 +23,5 @@ public class MatchSetupController { } return null; } + } diff --git a/Client/src/com/texttwist/client/pages/Page.java b/Client/src/com/texttwist/client/pages/Page.java index 24cd3ae..3a551f6 100644 --- a/Client/src/com/texttwist/client/pages/Page.java +++ b/Client/src/com/texttwist/client/pages/Page.java @@ -5,8 +5,13 @@ import com.texttwist.client.ui.*; import javax.swing.*; import java.awt.*; +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; import java.io.File; import java.io.IOException; +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.util.Date; import java.util.concurrent.Callable; /** @@ -88,16 +93,32 @@ public class Page { parent); } - public void addTimer(TTContainer parent, Font font, Color fontColor, String caption) { - TTLabel next = new TTLabel( + public Timer addTimer(TTContainer parent, Font font, Color fontColor, String caption, Integer value) { + TTLabel lblTimer = new TTLabel( new Point(0, 0), new Dimension(150, 50), caption, font, fontColor, parent); + + Timer timer = new Timer(1000, new ActionListener() { + private int count = value; + @Override + public void actionPerformed(ActionEvent e) { + if (count <= 0) { + lblTimer.setText("00:00"); + ((Timer)e.getSource()).stop(); + } else { + SimpleDateFormat dateFormat = new SimpleDateFormat("mm:ss:S"); + + lblTimer.setText(dateFormat.format(count)); + count--; + + } + } + }); + return timer; } - - } diff --git a/Client/src/com/texttwist/client/tasks/InvitePlayers.java b/Client/src/com/texttwist/client/tasks/InvitePlayers.java new file mode 100644 index 0000000..2476fcc --- /dev/null +++ b/Client/src/com/texttwist/client/tasks/InvitePlayers.java @@ -0,0 +1,89 @@ +package com.texttwist.client.tasks; + +import com.texttwist.client.App; +import com.texttwist.client.pages.Game; +import com.texttwist.client.pages.Menu; +import com.texttwist.client.pages.Page; +import com.texttwist.client.ui.TTDialog; +import models.Message; + +import javax.swing.*; +import java.io.IOException; +import java.nio.ByteBuffer; +import java.nio.channels.SocketChannel; +import java.util.concurrent.Callable; + +/** + * Created by loke on 25/06/2017. + */ +public class InvitePlayers extends SwingWorker { + + ByteBuffer buffer = ByteBuffer.allocate(1024); + + public DefaultListModel userNames; + public SocketChannel socketChannel; + + public InvitePlayers(DefaultListModel userNames, SocketChannel socketChannel) { + this.socketChannel = socketChannel; + this.userNames = userNames; + } + @Override + public Boolean doInBackground() { + Message message = new Message("START_GAME", App.sessionService.account.userName, App.sessionService.account.token, userNames); + + byte[] byteMessage = new String(message.toString()).getBytes(); + buffer = ByteBuffer.wrap(byteMessage); + try { + socketChannel.write(buffer); + } catch (IOException e) { + e.printStackTrace(); + } + + try { + while (socketChannel.read(buffer) != -1) { + buffer.clear(); + + String line = new String(buffer.array(), buffer.position(), buffer.remaining()); + + if (line.startsWith("MESSAGE")) { + Message msg = Message.toMessage(line); + if (msg.message.equals("USER_NOT_ONLINE")) { + new TTDialog("alert", "Users not online!", + new Callable() { + @Override + public Object call() throws Exception { + return null; + } + }, null); + return null; + + } + + if (msg.message.equals("INVITES_ALL_SENDED")) { + // clientSocket.close(); + new TTDialog("success", "Invite all sended!", + new Callable() { + @Override + public Object call() throws Exception { + //In attesa dei giocatori + new Game(Page.window); + return null; + } + }, null); + return null; + + } + } + } + } catch (IOException e) { + e.printStackTrace(); + } + return null; + } + + @Override + public void done() { + System.out.println("DDDDDDDD22"); + + } +} diff --git a/Client/src/com/texttwist/client/tasks/StartGame.java b/Client/src/com/texttwist/client/tasks/StartGame.java new file mode 100644 index 0000000..fdae74d --- /dev/null +++ b/Client/src/com/texttwist/client/tasks/StartGame.java @@ -0,0 +1,35 @@ +package com.texttwist.client.tasks; + +import com.texttwist.client.App; +import com.texttwist.client.pages.Game; +import com.texttwist.client.pages.GameController; +import oracle.jrockit.jfr.JFR; + +import javax.swing.*; + +/** + * Created by loke on 25/06/2017. + */ +public class StartGame implements Runnable { + + public Game game; + public StartGame(Game game){ + this.game = game; + + } + + @Override + public void run(){ + + while(!(this.game.gameController.letters.size() > 0)) { + System.out.println(this.game.gameController.letters.size()); + this.game.gameController.letters = App.matchService.words; + } + System.out.println(this.game.gameController.letters); + game.showLetters(); + if(this.game.gameController.letters.size()>0){ + this.game.timer.start(); + } + + } +} diff --git a/Client/src/com/texttwist/client/tasks/WaitForPlayers.java b/Client/src/com/texttwist/client/tasks/WaitForPlayers.java new file mode 100644 index 0000000..bf07e71 --- /dev/null +++ b/Client/src/com/texttwist/client/tasks/WaitForPlayers.java @@ -0,0 +1,80 @@ +package com.texttwist.client.tasks; + +import com.texttwist.client.App; +import com.texttwist.client.pages.Menu; +import com.texttwist.client.pages.Page; +import com.texttwist.client.ui.TTDialog; +import models.Message; + +import javax.swing.*; +import java.io.IOException; +import java.io.ObjectOutput; +import java.nio.Buffer; +import java.nio.ByteBuffer; +import java.nio.channels.SocketChannel; +import java.util.concurrent.Callable; +import java.util.concurrent.Future; + +/** + * Created by loke on 25/06/2017. + */ +public class WaitForPlayers extends SwingWorker,DefaultListModel> { + + public SocketChannel socketChannel; + public DefaultListModel words; + ByteBuffer buffer = ByteBuffer.allocate(1024); + + public WaitForPlayers(SocketChannel socketChannel, DefaultListModel words) { + this.socketChannel = socketChannel; + this.words = words; + } + + @Override + public DefaultListModel doInBackground() { + try { + TTDialog loading = new TTDialog("alert", "Waiting for users joins",null,null); + buffer.flip(); + while (this.socketChannel.read(this.buffer) != -1) { + + String line = new String(this.buffer.array(), this.buffer.position(), this.buffer.remaining()); + buffer.clear(); + + if (line.startsWith("MESSAGE")) { + buffer.clear(); + + Message msg = Message.toMessage(line); + System.out.println("HEY"); + System.out.println(msg); + if (msg.message.equals("TIMEOUT")) { + socketChannel.close(); + loading.dispose(); + new TTDialog("alert", "TIMEOUT!", + new Callable() { + @Override + public Object call() throws Exception { + return new Menu(Page.window); + + } + }, null); + return new DefaultListModel(); + } + + if (msg.message.equals("GAME_STARTED")) { + loading.dispose(); + words = msg.data; + //socketChannel.close(); + App.matchService.setWords(words); + return words; + } + } + } + } catch (IOException e) { + e.printStackTrace(); + } + return new DefaultListModel(); + } + + public void done(){ + System.out.println("DONEEE"); + } +} diff --git a/Commons/src/models/Message.java b/Commons/src/models/Message.java index e49f20c..edb07ac 100644 --- a/Commons/src/models/Message.java +++ b/Commons/src/models/Message.java @@ -31,7 +31,7 @@ public class Message implements Serializable { } public static Message toMessage(String data){ - + System.out.println(data); int divisorType = data.indexOf("="); data = data.substring(divisorType+1, data.length()); diff --git a/Server/src/com/texttwist/server/components/ThreadProxy.java b/Server/src/com/texttwist/server/components/ThreadProxy.java index 3dfabb0..f9173b6 100644 --- a/Server/src/com/texttwist/server/components/ThreadProxy.java +++ b/Server/src/com/texttwist/server/components/ThreadProxy.java @@ -20,6 +20,7 @@ public class ThreadProxy implements Callable { private Message request; private SocketChannel socketChannel; + ThreadProxy(Message request, SocketChannel socketChannel){ this.request = request; this.socketChannel = socketChannel; @@ -33,7 +34,7 @@ public class ThreadProxy implements Callable { @Override public Boolean call() { ByteBuffer buffer = ByteBuffer.allocate(1024); - + byte[] byteMessage = null; System.out.println("Selecting right task for new thread"); if(isValidToken(request.token)){ switch(request.message){ @@ -60,22 +61,33 @@ public class ThreadProxy implements Callable { if(!joinMatchRes){ //NON FARE NULLA, ASPETTA GLI ALTRI Message message = new Message("INVITES_ALL_SENDED", "", "", new DefaultListModel()); - byte[] byteMessage = new String(message.toString()).getBytes(); + byteMessage = new String(message.toString()).getBytes(); buffer = ByteBuffer.wrap(byteMessage); socketChannel.write(buffer); - Future matchTimeout = threadPool.submit(new MatchTimeout(match)); Boolean matchTimeoutRes = matchTimeout.get(); if(matchTimeoutRes){ - System.out.println("TUTTO OKEY, INIZIA GIOCO"); } else { - System.out.println("MESSAGGIO ERRORE A TUTTI"); - //socketChannel.close(); + //TODO If game is started not send this message + if(!match.isStarted()) { + for (int i = 0; i < match.playersSocket.size(); i++) { + socketChannel = match.playersSocket.get(i).getValue(); + if (socketChannel != null) { + buffer.clear(); + message = new Message("TIMEOUT", "", "", new DefaultListModel<>()); + byteMessage = new String(message.toString()).getBytes(); + buffer = ByteBuffer.wrap(byteMessage); + socketChannel.write(buffer); + //clientSocket.close(); + } + + } + } } return matchTimeoutRes; @@ -92,9 +104,10 @@ public class ThreadProxy implements Callable { } else { Message message = new Message("USER_NOT_ONLINE", "", "", new DefaultListModel()); - byte[] byteMessage = new String(message.toString()).getBytes(); + byteMessage = new String(message.toString()).getBytes(); + buffer.clear(); buffer = ByteBuffer.wrap(byteMessage); - socketChannel.write(buffer); + this.socketChannel.write(buffer); //socketChannel.close(); return false; } @@ -112,6 +125,33 @@ public class ThreadProxy implements Callable { Boolean joinMatchRes = joinMatch.get(); if(joinMatchRes){ System.out.print("START THE FUCKING GAME!!!!"); + //Find the game, send broadcast communication +// buffer.flip(); + + + Match match = Match.findMatch(request.data.get(0)); + for (int i =0; i< match.playersSocket.size(); i++) { + System.out.println("INVIO"); + socketChannel = match.playersSocket.get(i).getValue(); + if(socketChannel!=null) { + buffer.clear(); + + Future> generateWords = threadPool.submit(new GenerateWords()); + + Message message = new Message("GAME_STARTED", "", "", generateWords.get()); + match.startGame(); + byteMessage = new String(message.toString()).getBytes(); + + buffer = ByteBuffer.wrap(byteMessage); + try { + socketChannel.write(buffer); + } catch (IOException e) { + e.printStackTrace(); + } + //clientSocket.close(); + } + + } //ULTIMO A JOINARE! INIZIA GIOCO } else { System.out.print("WAIT FRIENDS"); diff --git a/Server/src/com/texttwist/server/models/Match.java b/Server/src/com/texttwist/server/models/Match.java index 1583ba3..1d2204f 100644 --- a/Server/src/com/texttwist/server/models/Match.java +++ b/Server/src/com/texttwist/server/models/Match.java @@ -7,13 +7,15 @@ import java.net.Socket; import java.nio.channels.SocketChannel; import java.util.*; +import static com.texttwist.server.components.GameServer.activeMatches; + /** * Created by loke on 23/06/2017. */ public class Match { public DefaultListModel> playersStatus = new DefaultListModel>(); public DefaultListModel> playersSocket = new DefaultListModel>(); - + private boolean started = false; public String matchCreator; public DefaultListModel> playersScore = new DefaultListModel>(); @@ -26,4 +28,23 @@ public class Match { this.matchCreator = matchCreator; } + public static Match findMatch(String matchName){ + for(int i = 0; i> { + + + public GenerateWords(){ + + } + + @Override + public DefaultListModel call() throws Exception { + DefaultListModel l = new DefaultListModel(); + l.addElement("D"); + l.addElement("S"); + l.addElement("Q"); + l.addElement("A"); + + + + return l; + } + +} diff --git a/Server/src/com/texttwist/server/tasks/JoinMatch.java b/Server/src/com/texttwist/server/tasks/JoinMatch.java index 5b76beb..3a8527b 100644 --- a/Server/src/com/texttwist/server/tasks/JoinMatch.java +++ b/Server/src/com/texttwist/server/tasks/JoinMatch.java @@ -9,6 +9,7 @@ import java.nio.channels.SocketChannel; import java.util.concurrent.Callable; import static com.texttwist.server.components.GameServer.activeMatches; +import static com.texttwist.server.models.Match.findMatch; /** * Created by loke on 23/06/2017. @@ -24,14 +25,6 @@ public class JoinMatch implements Callable { this.socketChannel = socketChannel; } - private Match findMatch(String matchName){ - for(int i = 0; i { for(int j = 0; j(name,1)); thisMatch.playersSocket.remove(j); thisMatch.playersSocket.addElement(new Pair<>(name,socketChannel)); System.out.println(playerName + ": JOINED"); - printAll(thisMatch); return allJoined(thisMatch); } } @@ -61,6 +51,8 @@ public class JoinMatch implements Callable { System.out.println(match.playersStatus.get(i).getKey()); System.out.println(match.playersStatus.get(i).getValue()); + System.out.println(match.playersSocket.get(i).getKey()); + System.out.println(match.playersSocket.get(i).getValue()); } } diff --git a/Server/src/com/texttwist/server/tasks/MatchTimeout.java b/Server/src/com/texttwist/server/tasks/MatchTimeout.java index ae0f03a..4f0bd70 100644 --- a/Server/src/com/texttwist/server/tasks/MatchTimeout.java +++ b/Server/src/com/texttwist/server/tasks/MatchTimeout.java @@ -27,19 +27,10 @@ public class MatchTimeout implements Callable { ByteBuffer buffer = ByteBuffer.allocate(1024); try { - Thread.currentThread().sleep(700000); + Thread.currentThread().sleep(7*60*1000); System.out.println("TIMEOUT - MANDA MESSAGGIO ERRORE A TUTTI GLI UTENTI DEL MATCH"); - for (int i =0; i< match.playersSocket.size(); i++) { - SocketChannel clientSocket = match.playersSocket.get(i).getValue(); - - Message message = new Message("TIMEOUT", "", "", new DefaultListModel<>()); - byte[] byteMessage = new String(message.toString()).getBytes(); - buffer = ByteBuffer.wrap(byteMessage); - clientSocket.write(buffer); - clientSocket.close(); - - } + return false; } catch (InterruptedException e) { e.printStackTrace(); } diff --git a/client_1.log b/client_1.log index d73db71..64fcb6c 100644 --- a/client_1.log +++ b/client_1.log @@ -1287,3 +1287,731 @@ LOGGER (Client1): Fri Jun 23 19:33:47 CEST 2017 - Client starting ... LOGGER (Client1): Fri Jun 23 19:33:58 CEST 2017 - Invoked invitation with username=a|[b] LOGGER (Client1): Fri Jun 23 19:33:58 CEST 2017 - Invoked invitation with username=a|[b] LOGGER (Client1): Fri Jun 23 19:33:58 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jun 25 08:42:15 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 08:42:18 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 08:42:33 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 08:42:33 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 08:42:33 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jun 25 08:48:07 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 08:48:08 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 08:48:18 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 08:48:18 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 08:48:18 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 08:49:55 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 08:50:32 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 08:50:39 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 08:50:50 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 08:50:50 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 08:50:50 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 08:52:56 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 08:52:58 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 08:53:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 08:53:08 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 08:53:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 08:55:51 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 08:55:53 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 08:56:02 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 08:56:02 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 08:56:02 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jun 25 09:00:33 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:00:34 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:00:43 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 09:00:43 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 09:00:43 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jun 25 09:01:57 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:01:59 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:02:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:02:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:02:10 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 09:02:52 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:02:53 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:03:03 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:03:03 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 09:03:03 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:05:36 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:05:37 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:05:47 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 09:05:47 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 09:05:47 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jun 25 09:06:30 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:06:31 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:06:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:06:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:06:44 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 09:07:13 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:07:14 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:07:23 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 09:07:23 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 09:07:23 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jun 25 09:20:29 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:20:31 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:20:44 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 09:20:44 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 09:20:44 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jun 25 09:22:04 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:22:05 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:22:21 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:22:21 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 09:22:21 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:24:59 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:25:00 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:25:09 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:25:09 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:25:09 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 09:27:04 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:27:05 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:27:15 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:27:15 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 09:27:15 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:29:05 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:29:11 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:29:18 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:29:18 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:29:18 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 09:30:24 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:30:26 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:30:34 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:30:34 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:30:34 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 09:33:12 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:33:15 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:33:27 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:33:27 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 09:33:27 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:34:38 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:34:40 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:34:51 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 09:34:51 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 09:34:51 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jun 25 09:48:38 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:48:40 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:48:52 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:48:52 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 09:48:52 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:49:32 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:49:34 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:49:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:49:44 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 09:49:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:52:14 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:52:16 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:52:23 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:52:23 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 09:52:23 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:54:14 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:54:15 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 09:54:33 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:54:33 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 09:54:33 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 10:03:53 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:03:55 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:04:09 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 10:04:09 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 10:04:09 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 10:10:27 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:10:41 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:11:25 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 10:11:52 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:11:53 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:12:01 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 10:12:01 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 10:12:01 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 10:19:21 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:19:22 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:19:32 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 10:19:32 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 10:19:32 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 10:21:34 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:21:37 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:21:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 10:21:44 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 10:21:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 10:23:38 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:23:47 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:23:56 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 10:23:56 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 10:23:56 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jun 25 10:27:41 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:27:44 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:27:56 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 10:27:56 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jun 25 10:27:56 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 10:29:09 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:29:20 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:29:32 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 10:29:32 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 10:29:32 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 10:30:16 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:30:19 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:30:30 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 10:30:30 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 10:30:30 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 10:35:48 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:35:50 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:35:59 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 10:35:59 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 10:35:59 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 10:40:02 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:40:03 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:40:13 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 10:40:13 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 10:40:13 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 10:52:03 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:52:05 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:52:16 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 10:52:16 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 10:52:16 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 10:55:27 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:55:33 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:55:40 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 10:55:40 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 10:55:40 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 10:55:52 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:55:53 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:56:11 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:56:22 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:56:27 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:56:37 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 10:56:37 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jun 25 10:56:37 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 10:58:22 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:58:30 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:58:35 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:58:40 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:59:50 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:59:51 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 10:59:59 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 10:59:59 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 10:59:59 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:01:56 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:01:59 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:02:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:02:08 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 11:02:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:04:55 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:04:56 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:05:04 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:05:04 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 11:05:04 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:14:58 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:15:00 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:15:09 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:15:09 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 11:15:09 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:16:25 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:16:27 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:16:36 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:16:36 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:16:36 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 11:17:01 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 11:17:01 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jun 25 11:17:01 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 11:21:02 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:21:04 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:21:11 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:21:11 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 11:21:11 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:25:59 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:26:01 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:26:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:26:08 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 11:26:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:26:52 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:26:53 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:27:01 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:27:01 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:27:01 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 11:29:09 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:29:11 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:29:18 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:29:18 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 11:29:18 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:29:48 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:29:53 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:30:01 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:30:01 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:30:01 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 11:30:50 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:30:52 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:31:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:31:02 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 11:31:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:34:07 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:34:08 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:34:15 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:34:15 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:34:15 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 11:35:17 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:35:23 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:35:30 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:35:30 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 11:35:30 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:36:03 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:36:06 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:36:13 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:36:13 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 11:36:14 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:39:05 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:39:07 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 11:39:15 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 11:39:15 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 11:39:15 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 12:08:10 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 12:08:11 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 12:08:19 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 12:08:19 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 12:08:19 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 12:16:39 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 12:16:41 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 12:16:49 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 12:16:49 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 12:16:49 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 12:20:12 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 12:20:13 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 12:20:23 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 12:20:23 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 12:20:23 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 12:21:52 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 12:21:54 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 12:22:03 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 12:22:03 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 12:22:03 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 12:23:12 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 12:23:16 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 12:23:23 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 12:23:23 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 12:23:23 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 12:23:38 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 12:23:39 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 12:23:46 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 12:23:46 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 12:23:46 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 14:55:48 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 14:55:55 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 14:55:57 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 14:56:07 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 14:56:07 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 14:56:07 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 14:59:04 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 14:59:10 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 14:59:20 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 14:59:20 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 14:59:20 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:00:25 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:00:28 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:00:38 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:00:38 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:00:38 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:03:09 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:03:10 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:03:20 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:03:20 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:03:20 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:05:27 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:05:28 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:05:36 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:05:36 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:05:36 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:07:30 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:07:32 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:07:40 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:07:40 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:07:40 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:09:03 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:09:08 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:09:16 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:09:16 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:09:16 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:10:53 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:10:54 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:11:03 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:11:03 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:11:03 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:11:45 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:11:47 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:11:57 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:11:57 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:11:57 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:12:30 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:12:32 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:12:40 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:12:41 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:12:41 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:13:50 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:13:52 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:14:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:14:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:14:02 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:16:03 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:16:04 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:16:12 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:16:12 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:16:12 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:17:47 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:17:53 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:17:58 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:17:58 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:17:58 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:19:10 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:19:17 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:19:19 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:19:26 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:19:26 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:19:26 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:20:41 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:20:47 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:20:53 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:20:53 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:20:53 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:22:03 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:22:04 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:22:12 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:22:12 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:22:12 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:23:58 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:23:59 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:24:07 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:24:07 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:24:07 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:25:23 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:25:25 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:25:34 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:25:34 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:25:34 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:28:38 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:28:39 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:28:48 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:28:48 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:28:48 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:35:01 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:35:03 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:35:06 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:35:17 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:35:33 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:35:35 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:35:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:35:44 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:35:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:37:44 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:37:45 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:37:52 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:37:52 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:37:52 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:38:21 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:38:24 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:38:37 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:38:37 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:38:37 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:40:51 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:40:52 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:41:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:41:02 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:41:02 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:45:01 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:45:03 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:45:16 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:45:16 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:45:16 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:51:30 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:51:34 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:51:42 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:51:42 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:51:42 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:55:33 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:55:35 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 15:55:54 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 15:55:54 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 15:55:55 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:03:53 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:03:59 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:04:01 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:04:09 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:04:09 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:04:09 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 16:05:59 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:06:00 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:06:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:06:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:06:10 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 16:08:37 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:08:38 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:08:50 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:08:51 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:09:00 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:09:00 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:09:00 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 16:11:26 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:11:31 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:11:38 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:11:38 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:11:38 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 16:14:03 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:14:04 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:14:16 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:14:16 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 16:14:16 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:22:24 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:22:25 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:22:33 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:22:33 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:22:33 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 16:23:36 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:23:38 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:23:45 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:23:45 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 16:23:45 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:24:30 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:24:31 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:24:39 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:24:39 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:24:39 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 16:25:25 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:25:26 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:25:36 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:25:36 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:25:36 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 16:28:18 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:28:20 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:28:27 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:28:27 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:28:27 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 16:30:17 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:30:19 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:30:27 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:30:27 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 16:30:27 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:32:03 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:32:04 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:32:11 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:32:11 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 16:32:11 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:34:51 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:34:58 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:35:04 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:35:04 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 16:35:04 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:37:21 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:37:23 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:37:31 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:37:31 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:37:31 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 16:39:32 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:39:34 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:39:42 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:39:42 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:39:42 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 16:39:59 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:40:01 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:40:08 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:40:20 CEST 2017 - Invoked invitation with username=a|[b, c] +LOGGER (Client1): Sun Jun 25 16:40:20 CEST 2017 - Invoked invitation with username=a|[b, c] +LOGGER (Client1): Sun Jun 25 16:40:20 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jun 25 16:40:20 CEST 2017 - Invoked invitation with username=a|[b, c] +LOGGER (Client1): Sun Jun 25 16:40:20 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jun 25 16:41:11 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:41:12 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:41:14 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:41:33 CEST 2017 - Invoked invitation with username=c|[a, b] +LOGGER (Client1): Sun Jun 25 16:41:33 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Sun Jun 25 16:41:33 CEST 2017 - Invoked invitation with username=c|[a, b] +LOGGER (Client1): Sun Jun 25 16:41:33 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Sun Jun 25 16:41:33 CEST 2017 - Invoked invitation with username=c|[a, b] +LOGGER (Client1): Sun Jun 25 16:43:07 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:43:08 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:43:39 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:43:40 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:44:41 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:44:43 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:45:22 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:45:23 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:45:33 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:45:33 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 16:45:33 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:46:02 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:46:03 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:46:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:46:10 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 16:46:11 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:47:20 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:47:22 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 16:47:29 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 16:47:29 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 16:47:29 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 17:02:02 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:02:03 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:02:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 17:02:10 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 17:02:10 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 17:04:54 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:04:55 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:05:16 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:05:22 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:05:30 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 17:05:30 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 17:05:30 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 17:08:21 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:08:24 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:08:35 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 17:08:35 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 17:08:35 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 17:34:34 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:34:35 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:34:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 17:34:44 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 17:34:44 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 17:35:50 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:35:52 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:36:01 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 17:36:01 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 17:36:01 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 17:39:03 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:39:06 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:39:15 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 17:39:15 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 17:39:15 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 17:41:52 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:41:54 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:42:59 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:43:00 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:43:09 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 17:43:09 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 17:43:09 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 17:53:24 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:53:26 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:53:34 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 17:53:34 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 17:53:34 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 17:54:21 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:54:23 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:54:31 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 17:54:31 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 17:54:31 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 17:57:16 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:57:19 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 17:57:35 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 17:57:35 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 17:57:35 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:02:29 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:02:32 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:02:41 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:02:41 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 18:02:41 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:04:54 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:04:55 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:05:05 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:05:13 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:05:13 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:05:13 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 18:05:34 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:05:36 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:05:46 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:05:46 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:05:46 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 18:20:18 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:20:20 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:20:31 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:20:31 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:20:31 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 18:21:12 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:21:15 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:21:24 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:21:24 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:21:24 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 18:25:48 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:25:49 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:25:58 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:25:58 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 18:25:59 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:30:07 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:30:08 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:30:17 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:30:17 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 18:30:17 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:34:47 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:34:48 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:34:57 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:34:57 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 18:34:57 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:35:54 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:35:57 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:36:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:36:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:36:08 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 18:37:00 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:37:02 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:37:17 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 18:37:17 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jun 25 18:37:17 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 18:46:28 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:46:30 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:46:38 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:46:38 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:46:39 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 18:47:36 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:47:38 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:47:47 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:47:47 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 18:47:47 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:49:19 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:49:20 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:49:32 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 18:49:32 CEST 2017 - Invoked invitation with username=a|[b] +LOGGER (Client1): Sun Jun 25 18:49:32 CEST 2017 - a ti ha sfidato! +LOGGER (Client1): Sun Jun 25 18:53:07 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:53:09 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:53:24 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:53:24 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:53:24 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 18:55:38 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:55:39 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:55:48 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:55:48 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 18:55:48 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 18:59:55 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 18:59:56 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 19:00:05 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 19:00:05 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 19:00:05 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 19:20:51 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 19:20:54 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 19:21:03 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 19:21:03 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 19:21:03 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 19:21:45 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 19:21:47 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 19:21:55 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 19:21:55 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 19:21:55 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 19:26:19 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 19:26:21 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 19:26:32 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 19:26:32 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 19:26:32 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 19:28:04 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 19:28:07 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 19:28:19 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 19:28:19 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 19:28:19 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 19:29:29 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 19:29:31 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 19:29:43 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 19:29:43 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 19:29:43 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 19:30:52 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 19:30:54 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 19:31:03 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 19:31:03 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 19:31:03 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 19:38:55 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 19:38:57 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 19:39:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 19:39:08 CEST 2017 - b ti ha sfidato! +LOGGER (Client1): Sun Jun 25 19:39:08 CEST 2017 - Invoked invitation with username=b|[a] +LOGGER (Client1): Sun Jun 25 19:39:36 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 19:39:38 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 19:39:47 CEST 2017 - Client starting ... +LOGGER (Client1): Sun Jun 25 19:40:05 CEST 2017 - Invoked invitation with username=c|[a, b] +LOGGER (Client1): Sun Jun 25 19:40:05 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Sun Jun 25 19:40:05 CEST 2017 - Invoked invitation with username=c|[a, b] +LOGGER (Client1): Sun Jun 25 19:40:05 CEST 2017 - c ti ha sfidato! +LOGGER (Client1): Sun Jun 25 19:40:05 CEST 2017 - Invoked invitation with username=c|[a, b] diff --git a/server.log b/server.log index 0a20150..ff776d5 100644 --- a/server.log +++ b/server.log @@ -2624,3 +2624,1207 @@ LOGGER (Server): Fri Jun 23 19:33:52 CEST 2017 - Invoked login with username=a A LOGGER (Server): Fri Jun 23 19:33:52 CEST 2017 - Login successfull LOGGER (Server): Fri Jun 23 19:33:55 CEST 2017 - Invoked login with username=b AND password=b LOGGER (Server): Fri Jun 23 19:33:55 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 08:42:10 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 08:42:11 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 08:42:11 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 08:42:11 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 08:42:26 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 08:42:26 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 08:42:29 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 08:42:29 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 08:48:00 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 08:48:01 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 08:48:01 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 08:48:01 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 08:48:04 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 08:48:04 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 08:48:04 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 08:48:04 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 08:48:13 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 08:48:13 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 08:48:15 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 08:48:15 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 08:50:23 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 08:50:23 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 08:50:23 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 08:50:23 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 08:50:42 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 08:50:42 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 08:50:47 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 08:50:47 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 08:52:53 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 08:52:53 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 08:52:53 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 08:52:53 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 08:53:03 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 08:53:03 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 08:53:05 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 08:53:05 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 08:55:48 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 08:55:48 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 08:55:48 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 08:55:48 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 08:55:56 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 08:55:56 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 08:55:59 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 08:55:59 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:00:29 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 09:00:29 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 09:00:29 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 09:00:29 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 09:00:38 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 09:00:38 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:00:41 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 09:00:41 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:01:56 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 09:01:56 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 09:01:56 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 09:01:56 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 09:02:03 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 09:02:03 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:02:07 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 09:02:07 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:02:50 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 09:02:50 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 09:02:50 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 09:02:50 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 09:02:58 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 09:02:58 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:03:00 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 09:03:00 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:05:32 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 09:05:32 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 09:05:32 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 09:05:32 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 09:05:40 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 09:05:40 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:05:44 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 09:05:44 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:06:26 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 09:06:26 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 09:06:27 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 09:06:27 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 09:06:39 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 09:06:39 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:06:41 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 09:06:41 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:07:09 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 09:07:09 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 09:07:09 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 09:07:09 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 09:07:17 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 09:07:17 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:07:20 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 09:07:20 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:20:27 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 09:20:27 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 09:20:27 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 09:20:27 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 09:20:35 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 09:20:35 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:20:37 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 09:20:37 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:22:01 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 09:22:02 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 09:22:02 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 09:22:02 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 09:22:15 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 09:22:15 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:22:17 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 09:22:17 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:24:55 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 09:24:55 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 09:24:55 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 09:24:55 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 09:25:02 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 09:25:02 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:25:07 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 09:25:07 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:27:00 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 09:27:00 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 09:27:00 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 09:27:00 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 09:27:10 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 09:27:10 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:27:12 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 09:27:12 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:29:02 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 09:29:02 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 09:29:02 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 09:29:02 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 09:29:14 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 09:29:14 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:29:16 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 09:29:16 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:30:20 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 09:30:20 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 09:30:20 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 09:30:20 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 09:30:28 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 09:30:28 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:30:32 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 09:30:32 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:33:07 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 09:33:07 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 09:33:07 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 09:33:07 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 09:33:19 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 09:33:19 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:33:22 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 09:33:22 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:34:34 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 09:34:35 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 09:34:35 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 09:34:35 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 09:34:45 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 09:34:45 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:34:47 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 09:34:47 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:48:35 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 09:48:35 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 09:48:35 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 09:48:35 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 09:48:46 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 09:48:46 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:48:49 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 09:48:49 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:49:29 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 09:49:29 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 09:49:29 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 09:49:29 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 09:49:39 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 09:49:39 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:49:42 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 09:49:42 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:52:12 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 09:52:13 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 09:52:13 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 09:52:13 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 09:52:19 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 09:52:19 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:52:20 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 09:52:20 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:54:12 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 09:54:12 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 09:54:12 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 09:54:12 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 09:54:17 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 09:54:17 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:54:22 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 09:54:22 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 09:54:53 CEST 2017 - Invoked logout with username=a AND token=bcunohk6i0ui706rvm98mfihul +LOGGER (Server): Sun Jun 25 09:54:53 CEST 2017 - Logout successfull +LOGGER (Server): Sun Jun 25 09:54:53 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Sun Jun 25 10:03:50 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 10:03:50 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 10:03:50 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 10:03:50 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 10:04:00 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 10:04:00 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:04:04 CEST 2017 - Invoked login with username=a AND password= +LOGGER (Server): Sun Jun 25 10:04:04 CEST 2017 - Login unsuccessfull +LOGGER (Server): Sun Jun 25 10:04:06 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 10:04:06 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:06:00 CEST 2017 - Invoked logout with username=a AND token=q74q773lqpb8oo0fl1b5l6qo0 +LOGGER (Server): Sun Jun 25 10:06:00 CEST 2017 - Logout successfull +LOGGER (Server): Sun Jun 25 10:06:00 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Sun Jun 25 10:10:28 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 10:10:29 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 10:10:29 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 10:10:29 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 10:11:21 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 10:11:21 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:11:22 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 10:11:22 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:11:49 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 10:11:49 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 10:11:49 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 10:11:49 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 10:11:57 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 10:11:57 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:11:59 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 10:11:59 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:19:16 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 10:19:16 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 10:19:16 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 10:19:16 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 10:19:27 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 10:19:27 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:19:29 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 10:19:29 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:21:31 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 10:21:31 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 10:21:31 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 10:21:31 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 10:21:40 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 10:21:40 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:21:42 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 10:21:42 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:23:32 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 10:23:32 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 10:23:32 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 10:23:32 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 10:23:51 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 10:23:51 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:23:53 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 10:23:53 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:27:37 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 10:27:37 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 10:27:37 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 10:27:37 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 10:27:46 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 10:27:46 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:27:51 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 10:27:51 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:29:04 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 10:29:04 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 10:29:04 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 10:29:04 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 10:29:23 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 10:29:23 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:29:25 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 10:29:25 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:30:08 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 10:30:08 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 10:30:08 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 10:30:08 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 10:30:24 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 10:30:24 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:30:27 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 10:30:27 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:35:44 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 10:35:44 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 10:35:44 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 10:35:45 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 10:35:54 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 10:35:54 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:35:56 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 10:35:56 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:39:58 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 10:39:58 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 10:39:58 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 10:39:58 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 10:40:05 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 10:40:05 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:40:10 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 10:40:10 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:51:18 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 10:51:18 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 10:51:18 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 10:51:18 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 10:52:12 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 10:52:12 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:52:14 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 10:52:14 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:55:21 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 10:55:22 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 10:55:22 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 10:55:22 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 10:55:36 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 10:55:36 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:55:38 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 10:55:38 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:55:55 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 10:55:55 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:56:00 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 10:56:00 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:56:20 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 10:56:20 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 10:56:20 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 10:56:21 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 10:56:32 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 10:56:32 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:56:34 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 10:56:34 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:58:24 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 10:58:24 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 10:58:24 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 10:58:24 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 10:58:43 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 10:58:43 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:58:45 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 10:58:45 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:59:44 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 10:59:44 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 10:59:44 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 10:59:45 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 10:59:55 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 10:59:55 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 10:59:57 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 10:59:57 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:01:52 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 11:01:53 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 11:01:53 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 11:01:53 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 11:02:02 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 11:02:02 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:02:04 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 11:02:04 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:04:52 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 11:04:52 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 11:04:52 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 11:04:52 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 11:05:00 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 11:05:00 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:05:02 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 11:05:02 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:14:55 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 11:14:55 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 11:14:55 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 11:14:55 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 11:15:04 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 11:15:04 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:15:06 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 11:15:06 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:16:23 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 11:16:23 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 11:16:23 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 11:16:23 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 11:16:30 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 11:16:30 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:16:34 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 11:16:34 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:20:59 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 11:20:59 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 11:20:59 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 11:20:59 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 11:21:07 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 11:21:07 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:21:09 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 11:21:09 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:25:57 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 11:25:58 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 11:25:58 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 11:25:58 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 11:26:04 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 11:26:04 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:26:06 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 11:26:06 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:26:49 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 11:26:49 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 11:26:49 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 11:26:49 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 11:26:58 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 11:26:58 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:26:59 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 11:26:59 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:27:05 CEST 2017 - Invoked logout with username=a AND token=cig6dbhu63tdeocav58ijb9m3s +LOGGER (Server): Sun Jun 25 11:27:05 CEST 2017 - Logout successfull +LOGGER (Server): Sun Jun 25 11:27:05 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Sun Jun 25 11:29:07 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 11:29:08 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 11:29:08 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 11:29:08 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 11:29:15 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 11:29:15 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:29:16 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 11:29:16 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:29:45 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 11:29:45 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 11:29:45 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 11:29:45 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 11:29:55 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 11:29:55 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:29:59 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 11:29:59 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:30:47 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 11:30:47 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 11:30:47 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 11:30:47 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 11:30:57 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 11:30:57 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:30:59 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 11:30:59 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:34:05 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 11:34:05 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 11:34:05 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 11:34:05 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 11:34:10 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 11:34:10 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:34:12 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 11:34:12 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:35:15 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 11:35:15 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 11:35:15 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 11:35:15 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 11:35:19 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 11:35:19 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:35:27 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 11:35:27 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:36:00 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 11:36:00 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 11:36:00 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 11:36:00 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 11:36:09 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 11:36:09 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:36:11 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 11:36:11 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:39:01 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 11:39:02 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 11:39:02 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 11:39:02 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 11:39:10 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 11:39:10 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 11:39:12 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 11:39:12 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 12:08:08 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 12:08:08 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 12:08:08 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 12:08:08 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 12:08:14 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 12:08:15 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 12:08:16 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 12:08:16 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 12:16:37 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 12:16:37 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 12:16:37 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 12:16:37 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 12:16:44 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 12:16:44 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 12:16:46 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 12:16:46 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 12:17:22 CEST 2017 - Invoked logout with username=b AND token=6m08rpo54vj4gbc6aroe3q0c39 +LOGGER (Server): Sun Jun 25 12:17:22 CEST 2017 - Logout successfull +LOGGER (Server): Sun Jun 25 12:17:22 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Sun Jun 25 12:20:09 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 12:20:10 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 12:20:10 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 12:20:10 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 12:20:16 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 12:20:16 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 12:20:20 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 12:20:20 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 12:21:50 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 12:21:50 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 12:21:50 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 12:21:50 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 12:21:59 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 12:21:59 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 12:22:01 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 12:22:01 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 12:23:07 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 12:23:07 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 12:23:07 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 12:23:07 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 12:23:18 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 12:23:18 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 12:23:20 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 12:23:20 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 12:23:35 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 12:23:35 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 12:23:35 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 12:23:35 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 12:23:42 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 12:23:42 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 12:23:44 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 12:23:44 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 12:23:59 CEST 2017 - Invoked logout with username=b AND token=163jaqlaf0bcu565gfpr93bj7p +LOGGER (Server): Sun Jun 25 12:23:59 CEST 2017 - Logout successfull +LOGGER (Server): Sun Jun 25 12:23:59 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Sun Jun 25 14:55:52 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 14:55:53 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 14:55:53 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 14:55:53 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 14:56:02 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 14:56:02 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 14:56:04 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 14:56:04 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 14:58:59 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 14:59:00 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 14:59:00 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 14:59:00 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 14:59:16 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 14:59:16 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 14:59:18 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 14:59:18 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:00:22 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:00:23 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:00:23 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:00:23 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:00:31 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:00:31 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:00:35 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:00:35 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:03:06 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:03:06 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:03:06 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:03:06 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:03:13 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:03:13 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:03:15 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:03:15 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:05:25 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:05:25 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:05:25 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:05:25 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:05:32 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:05:32 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:05:34 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:05:34 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:07:28 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:07:28 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:07:28 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:07:28 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:07:35 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:07:35 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:07:37 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:07:37 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:09:01 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:09:01 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:09:01 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:09:01 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:09:11 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:09:11 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:09:14 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:09:14 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:10:48 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:10:48 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:10:49 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:10:49 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:10:58 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:10:58 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:11:00 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:11:00 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:11:42 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:11:42 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:11:42 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:11:42 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:11:50 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:11:50 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:11:54 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:11:54 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:12:27 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:12:27 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:12:27 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:12:27 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:12:36 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:12:36 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:12:38 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:12:38 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:13:47 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:13:48 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:13:48 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:13:48 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:13:55 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:13:55 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:13:59 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:13:59 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:15:58 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:15:58 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:15:58 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:15:58 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:16:07 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:16:07 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:16:10 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:16:10 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:17:42 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:17:42 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:17:42 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:17:42 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:17:51 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:17:51 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:17:56 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:17:56 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:19:14 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:19:14 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:19:14 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:19:14 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:19:21 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:19:21 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:19:24 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:19:24 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:20:37 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:20:37 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:20:37 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:20:37 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:20:45 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:20:45 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:20:50 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:20:50 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:22:00 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:22:01 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:22:01 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:22:01 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:22:07 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:22:07 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:22:10 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:22:10 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:22:53 CEST 2017 - Invoked logout with username=b AND token=tu7tc9e0r9vkelm6u6jo99m09h +LOGGER (Server): Sun Jun 25 15:22:53 CEST 2017 - Logout successfull +LOGGER (Server): Sun Jun 25 15:22:53 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Sun Jun 25 15:22:54 CEST 2017 - Invoked logout with username=a AND token=p8kmmo765mpl7t3h605vnkd408 +LOGGER (Server): Sun Jun 25 15:22:54 CEST 2017 - Logout successfull +LOGGER (Server): Sun Jun 25 15:22:54 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Sun Jun 25 15:22:56 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:22:56 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:22:58 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:22:58 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:23:55 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:23:56 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:23:56 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:23:56 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:24:03 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:24:03 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:24:05 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:24:05 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:25:21 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:25:21 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:25:21 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:25:21 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:25:27 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:25:27 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:25:31 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:25:31 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:28:35 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:28:35 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:28:35 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:28:35 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:28:43 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:28:43 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:28:44 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:28:44 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:34:59 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:34:59 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:34:59 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:34:59 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:35:12 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:35:12 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:35:15 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:35:15 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:35:30 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:35:31 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:35:31 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:35:31 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:35:38 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:35:38 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:35:42 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:35:42 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:37:39 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:37:39 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:37:39 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:37:39 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:37:47 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:37:47 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:37:50 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:37:50 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:38:13 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:38:14 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:38:14 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:38:14 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:38:30 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:38:30 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:38:33 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:38:33 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:40:48 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:40:48 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:40:49 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:40:49 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:40:58 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:40:58 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:41:00 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:41:00 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:44:10 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:44:10 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:44:10 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:44:10 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:44:57 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:44:57 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:45:08 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:45:08 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:45:13 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:45:13 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:51:21 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:51:21 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:51:21 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:51:21 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:51:38 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:51:38 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:51:40 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:51:40 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:55:27 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 15:55:28 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 15:55:28 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 15:55:28 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 15:55:40 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 15:55:40 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 15:55:42 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 15:55:42 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:03:57 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 16:03:57 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 16:03:57 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 16:03:57 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 16:04:03 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 16:04:03 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:04:06 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 16:04:06 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:05:57 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 16:05:57 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 16:05:57 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 16:05:57 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 16:06:04 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 16:06:04 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:06:07 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 16:06:07 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:08:46 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 16:08:47 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 16:08:47 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 16:08:47 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 16:08:53 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 16:08:54 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:08:58 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 16:08:58 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:11:24 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 16:11:24 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 16:11:24 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 16:11:24 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 16:11:33 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 16:11:33 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:11:36 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 16:11:36 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:14:01 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 16:14:01 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 16:14:01 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 16:14:01 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 16:14:10 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 16:14:10 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:14:12 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 16:14:12 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:22:21 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 16:22:21 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 16:22:21 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 16:22:21 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 16:22:27 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 16:22:27 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:22:30 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 16:22:30 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:23:33 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 16:23:33 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 16:23:33 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 16:23:33 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 16:23:41 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 16:23:41 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:23:43 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 16:23:43 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:24:28 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 16:24:29 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 16:24:29 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 16:24:29 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 16:24:33 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 16:24:33 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:24:37 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 16:24:37 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:25:23 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 16:25:23 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 16:25:23 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 16:25:23 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 16:25:28 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 16:25:28 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:25:32 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 16:25:32 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:25:51 CEST 2017 - Invoked logout with username=a AND token=bcm0ui3dd16ddlf5dubimbpm30 +LOGGER (Server): Sun Jun 25 16:25:51 CEST 2017 - Logout successfull +LOGGER (Server): Sun Jun 25 16:25:51 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Sun Jun 25 16:28:16 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 16:28:16 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 16:28:17 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 16:28:17 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 16:28:21 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 16:28:21 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:28:25 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 16:28:25 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:30:11 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 16:30:12 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 16:30:12 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 16:30:12 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 16:30:22 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 16:30:22 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:30:24 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 16:30:24 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:31:59 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 16:31:59 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 16:31:59 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 16:31:59 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 16:32:07 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 16:32:07 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:32:09 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 16:32:09 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:34:49 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 16:34:49 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 16:34:49 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 16:34:49 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 16:34:56 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 16:34:56 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:35:02 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 16:35:02 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:37:17 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 16:37:17 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 16:37:17 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 16:37:17 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 16:37:26 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 16:37:26 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:37:29 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 16:37:29 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:39:29 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 16:39:30 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 16:39:30 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 16:39:30 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 16:39:36 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 16:39:36 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:39:39 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 16:39:39 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:39:56 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 16:39:57 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 16:39:57 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 16:39:57 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 16:40:04 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 16:40:04 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:40:07 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 16:40:07 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:40:11 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jun 25 16:40:11 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:41:08 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 16:41:08 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 16:41:08 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 16:41:08 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 16:41:22 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 16:41:22 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:41:24 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 16:41:24 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:41:26 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jun 25 16:41:26 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:43:05 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 16:43:05 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 16:43:05 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 16:43:05 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 16:43:12 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 16:43:12 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:43:13 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 16:43:13 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:43:36 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 16:43:36 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 16:43:36 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 16:43:36 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 16:43:45 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 16:43:45 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:43:46 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 16:43:46 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:44:01 CEST 2017 - Invoked logout with username=a AND token=e2jvjpqaqn0lsetcc2hea1lb6h +LOGGER (Server): Sun Jun 25 16:44:01 CEST 2017 - Logout successfull +LOGGER (Server): Sun Jun 25 16:44:01 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Sun Jun 25 16:44:37 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 16:44:37 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 16:44:37 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 16:44:37 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 16:44:50 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 16:44:50 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:44:52 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 16:44:52 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:45:20 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 16:45:20 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 16:45:20 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 16:45:20 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 16:45:29 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 16:45:29 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:45:31 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 16:45:31 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:45:59 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 16:45:59 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 16:45:59 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 16:45:59 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 16:46:06 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 16:46:06 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:46:08 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 16:46:08 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:47:17 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 16:47:18 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 16:47:18 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 16:47:18 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 16:47:25 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 16:47:25 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 16:47:27 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 16:47:27 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 17:01:59 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 17:01:59 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 17:01:59 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 17:01:59 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 17:02:07 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 17:02:07 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 17:02:08 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 17:02:08 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 17:05:10 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 17:05:10 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 17:05:10 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 17:05:10 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 17:05:13 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 17:05:14 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 17:05:26 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 17:05:26 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 17:05:28 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 17:05:28 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 17:08:19 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 17:08:19 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 17:08:19 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 17:08:19 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 17:08:29 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 17:08:29 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 17:08:31 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 17:08:31 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 17:34:32 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 17:34:32 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 17:34:32 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 17:34:32 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 17:34:39 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 17:34:39 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 17:34:41 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 17:34:41 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 17:35:49 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 17:35:49 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 17:35:49 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 17:35:49 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 17:35:56 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 17:35:56 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 17:35:58 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 17:35:58 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 17:39:01 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 17:39:01 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 17:39:01 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 17:39:01 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 17:39:10 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 17:39:10 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 17:39:12 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 17:39:12 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 17:41:49 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 17:41:49 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 17:41:49 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 17:41:49 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 17:42:56 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 17:42:56 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 17:42:56 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 17:42:56 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 17:43:05 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 17:43:05 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 17:43:07 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 17:43:07 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 17:53:21 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 17:53:21 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 17:53:21 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 17:53:21 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 17:53:29 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 17:53:29 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 17:53:31 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 17:53:31 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 17:54:19 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 17:54:19 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 17:54:19 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 17:54:19 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 17:54:26 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 17:54:26 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 17:54:28 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 17:54:28 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 17:57:06 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 17:57:06 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 17:57:06 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 17:57:06 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 17:57:28 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 17:57:28 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 17:57:31 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 17:57:31 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:02:26 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 18:02:26 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 18:02:26 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 18:02:26 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 18:02:35 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 18:02:35 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:02:37 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 18:02:37 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:04:52 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 18:04:53 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 18:04:53 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 18:04:53 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 18:05:02 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 18:05:02 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:05:10 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 18:05:11 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:05:31 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 18:05:31 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 18:05:31 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 18:05:32 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 18:05:42 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 18:05:42 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:05:43 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 18:05:43 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:20:17 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 18:20:17 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 18:20:17 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 18:20:17 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 18:20:24 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 18:20:24 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:20:27 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 18:20:27 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:21:10 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 18:21:10 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 18:21:10 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 18:21:10 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 18:21:18 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 18:21:18 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:21:21 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 18:21:21 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:25:45 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 18:25:46 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 18:25:46 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 18:25:46 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 18:25:52 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 18:25:52 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:25:54 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 18:25:54 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:30:03 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 18:30:03 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 18:30:03 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 18:30:03 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 18:30:13 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 18:30:13 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:30:15 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 18:30:15 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:34:44 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 18:34:44 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 18:34:44 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 18:34:44 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 18:34:52 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 18:34:52 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:34:55 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 18:34:55 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:35:52 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 18:35:52 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 18:35:52 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 18:35:52 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 18:35:59 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 18:35:59 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:36:05 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 18:36:05 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:36:56 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 18:36:56 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 18:36:56 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 18:36:56 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 18:37:08 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 18:37:08 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:37:13 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 18:37:13 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:46:26 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 18:46:26 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 18:46:26 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 18:46:26 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 18:46:33 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 18:46:33 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:46:36 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 18:46:36 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:47:34 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 18:47:34 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 18:47:34 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 18:47:34 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 18:47:42 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 18:47:42 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:47:44 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 18:47:44 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:49:17 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 18:49:17 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 18:49:17 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 18:49:17 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 18:49:25 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 18:49:25 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:49:27 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 18:49:27 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:53:05 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 18:53:06 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 18:53:06 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 18:53:06 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 18:53:14 CEST 2017 - Invoked login with username=a AND password= +LOGGER (Server): Sun Jun 25 18:53:14 CEST 2017 - Login unsuccessfull +LOGGER (Server): Sun Jun 25 18:53:17 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 18:53:17 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:53:21 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 18:53:21 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:55:35 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 18:55:35 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 18:55:35 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 18:55:35 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 18:55:43 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 18:55:43 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:55:45 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 18:55:45 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 18:59:47 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 18:59:47 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 18:59:47 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 18:59:47 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 19:00:00 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 19:00:00 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 19:00:02 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 19:00:02 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 19:20:42 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 19:20:42 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 19:20:42 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 19:20:42 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 19:20:57 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 19:20:57 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 19:21:00 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 19:21:00 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 19:21:36 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 19:21:36 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 19:21:36 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 19:21:36 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 19:21:51 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 19:21:51 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 19:21:53 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 19:21:53 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 19:26:17 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 19:26:17 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 19:26:17 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 19:26:17 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 19:26:28 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 19:26:28 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 19:26:29 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 19:26:29 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 19:27:59 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 19:27:59 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 19:27:59 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 19:27:59 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 19:28:12 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 19:28:12 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 19:28:14 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 19:28:14 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 19:29:23 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 19:29:23 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 19:29:23 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 19:29:23 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 19:29:36 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 19:29:36 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 19:29:38 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 19:29:38 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 19:29:57 CEST 2017 - Invoked logout with username=b AND token=a915fqijg3cc3jbhli88jvbtkc +LOGGER (Server): Sun Jun 25 19:29:57 CEST 2017 - Logout successfull +LOGGER (Server): Sun Jun 25 19:29:57 CEST 2017 - Logout successfull (but something gone wrong) +LOGGER (Server): Sun Jun 25 19:30:50 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 19:30:50 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 19:30:50 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 19:30:50 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 19:30:58 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 19:30:58 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 19:31:00 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 19:31:00 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 19:38:52 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 19:38:52 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 19:38:52 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 19:38:52 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 19:39:03 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 19:39:03 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 19:39:05 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 19:39:05 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 19:39:33 CEST 2017 - Server starting ... +LOGGER (Server): Sun Jun 25 19:39:33 CEST 2017 - Auth Service running at 9999 port... +LOGGER (Server): Sun Jun 25 19:39:33 CEST 2017 - Game Service is running at 10000 port... +LOGGER (Server): Sun Jun 25 19:39:33 CEST 2017 - Server started +LOGGER (Server): Sun Jun 25 19:39:42 CEST 2017 - Invoked login with username=a AND password=a +LOGGER (Server): Sun Jun 25 19:39:42 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 19:39:45 CEST 2017 - Invoked login with username=b AND password=b +LOGGER (Server): Sun Jun 25 19:39:45 CEST 2017 - Login successfull +LOGGER (Server): Sun Jun 25 19:39:52 CEST 2017 - Invoked login with username=c AND password=c +LOGGER (Server): Sun Jun 25 19:39:52 CEST 2017 - Login successfull