This commit is contained in:
Lorenzo Iovino 2017-07-07 15:50:00 +02:00
parent e5c3202bb2
commit 3a528f307b
25 changed files with 1138 additions and 473 deletions

843
.idea/workspace.xml generated

File diff suppressed because it is too large Load diff

View file

@ -15,7 +15,6 @@ public class HomeController {
public Response login(String userName, String password) throws RemoteException, NotBoundException, MalformedURLException { public Response login(String userName, String password) throws RemoteException, NotBoundException, MalformedURLException {
Response res = App.authService.login(userName,password); Response res = App.authService.login(userName,password);
System.out.println(res.data);
if (res.code == 200){ if (res.code == 200){
App.session = (new Session(new User(userName,password,0), res.data.get("token").toString())); App.session = (new Session(new User(userName,password,0), res.data.get("token").toString()));
} }

View file

@ -91,7 +91,6 @@ public class Game {
//Invia tcp req a server per dirgli che sto joinando //Invia tcp req a server per dirgli che sto joinando
DefaultListModel<String> matchNames = new DefaultListModel<String>(); DefaultListModel<String> matchNames = new DefaultListModel<String>();
matchNames.addElement(matchName); matchNames.addElement(matchName);
System.out.println("STO JOINANDO");
Message message = new Message("JOIN_GAME", App.session.account.userName, App.session.token, matchNames); Message message = new Message("JOIN_GAME", App.session.account.userName, App.session.token, matchNames);
byte[] byteMessage = new String(message.toString()).getBytes(); byte[] byteMessage = new String(message.toString()).getBytes();

View file

@ -29,7 +29,6 @@ public class FetchHighscore extends SwingWorker<Void,Void> {
public Void doInBackground() { public Void doInBackground() {
Message message = new Message("FETCH_HIGHSCORES", App.session.account.userName, App.session.token, new DefaultListModel<>()); Message message = new Message("FETCH_HIGHSCORES", App.session.account.userName, App.session.token, new DefaultListModel<>());
buffer = ByteBuffer.allocate(1024); buffer = ByteBuffer.allocate(1024);
System.out.println("SENDDDDD MESSAGE");
byte[] byteMessage = message.toString().getBytes(); byte[] byteMessage = message.toString().getBytes();
buffer = ByteBuffer.wrap(byteMessage); buffer = ByteBuffer.wrap(byteMessage);
try { try {
@ -49,7 +48,6 @@ public class FetchHighscore extends SwingWorker<Void,Void> {
if (line.startsWith("MESSAGE")) { if (line.startsWith("MESSAGE")) {
Message msg = Message.toMessage(line); Message msg = Message.toMessage(line);
System.out.println(line);
if (msg.message.equals("HIGHSCORES") && msg.data != null) { if (msg.message.equals("HIGHSCORES") && msg.data != null) {
for(int i = 0; i< msg.data.size()-1; i++){ for(int i = 0; i< msg.data.size()-1; i++){
@ -69,10 +67,8 @@ public class FetchHighscore extends SwingWorker<Void,Void> {
} }
public void done(){ public void done(){
System.out.println("Done Highscores");
App.game.globalRanks = globalRanks; App.game.globalRanks = globalRanks;
this.highscoresPage.showHighscoreList(); this.highscoresPage.showHighscoreList();
System.out.println("DODODO");
} }
} }

View file

@ -82,7 +82,6 @@ public class InvitePlayers extends SwingWorker<Boolean,Void> {
@Override @Override
public void done() { public void done() {
System.out.println("Done invite players");
} }
} }

View file

@ -52,7 +52,6 @@ public class SendWords extends SwingWorker<Void,Void> {
Message msg = new Message("WORDS", App.session.account.userName, "", words); Message msg = new Message("WORDS", App.session.account.userName, "", words);
String sentence = msg.toString(); String sentence = msg.toString();
sendData = sentence.getBytes(); sendData = sentence.getBytes();
System.out.println("SENDIJIIDIIDIDIDIDDIDIDIDIDI");
DatagramPacket sendPacket = new DatagramPacket(sendData, sendData.length, IPAddress, Config.WordsReceiverServerPort); DatagramPacket sendPacket = new DatagramPacket(sendData, sendData.length, IPAddress, Config.WordsReceiverServerPort);
clientSocket.send(sendPacket); clientSocket.send(sendPacket);
clientSocket.close();*/ clientSocket.close();*/
@ -70,7 +69,6 @@ public class SendWords extends SwingWorker<Void,Void> {
@Override @Override
public void done(){ public void done(){
System.out.println("Done send SCOREEEEEE");
try { try {
this.callback.execute(); this.callback.execute();
} catch (Exception e) { } catch (Exception e) {

View file

@ -30,7 +30,6 @@ public class StartGame extends SwingWorker<Void,Void> {
@Override @Override
public Object call() throws Exception { public Object call() throws Exception {
gamePage.showLetters(); gamePage.showLetters();
System.out.println(letters);
gamePage.timer.start(); gamePage.timer.start();
return null; return null;
} }
@ -40,6 +39,5 @@ public class StartGame extends SwingWorker<Void,Void> {
@Override @Override
public void done(){ public void done(){
System.out.println("Done start gamePage");
} }
} }

View file

@ -70,7 +70,7 @@ public class WaitForPlayers extends SwingWorker<DefaultListModel<String>,Default
new Callable() { new Callable() {
@Override @Override
public Object call() throws Exception { public Object call() throws Exception {
socketChannel.close(); //socketChannel.close();
return new MenuPage(Page.window); return new MenuPage(Page.window);
} }
@ -85,13 +85,10 @@ public class WaitForPlayers extends SwingWorker<DefaultListModel<String>,Default
if(msg.data !=null ) { if(msg.data !=null ) {
data= msg.data; data= msg.data;
System.out.println("HERE");
Integer multicastId = Integer.valueOf(data.remove(data.size()-2)); Integer multicastId = Integer.valueOf(data.remove(data.size()-2));
System.out.println(multicastId);
App.game.setMulticastId(multicastId); App.game.setMulticastId(multicastId);
App.game.multicastSocket = new MulticastSocket(App.game.multicastId); App.game.multicastSocket = new MulticastSocket(App.game.multicastId);
System.out.println(App.game.multicastSocket);
InetAddress ia = InetAddress.getByName(Config.ScoreMulticastServerURI); InetAddress ia = InetAddress.getByName(Config.ScoreMulticastServerURI);
App.game.multicastSocket.joinGroup(ia); App.game.multicastSocket.joinGroup(ia);
letters = msg.data; letters = msg.data;
@ -105,7 +102,6 @@ public class WaitForPlayers extends SwingWorker<DefaultListModel<String>,Default
} }
} }
} catch (IOException e) { } catch (IOException e) {
System.out.println("ECCEZIONE, GIOCO NON ESISTE. ELIMINALO");
e.printStackTrace(); e.printStackTrace();
} }
@ -115,17 +111,13 @@ public class WaitForPlayers extends SwingWorker<DefaultListModel<String>,Default
@Override @Override
public void done(){ public void done(){
if(!joinTimeout) { if(!joinTimeout) {
System.out.println("Done wait for players");
try { try {
System.out.println(letters);
App.game.setLetters(letters); App.game.setLetters(letters);
System.out.println("PAROLE IN INVIO");
this.callback.execute(); this.callback.execute();
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
} }
} else { } else {
System.out.println("TIMEOUT HAPPEN, GO TO MENU PAGE");
} }
} }
} }

View file

@ -34,14 +34,10 @@ public class WaitForScore extends SwingWorker<Void,Void> {
Message msg; Message msg;
while(true) { while(true) {
byte[] buf = new byte[1024]; byte[] buf = new byte[1024];
System.out.println("SONO QUIIIII");
DatagramPacket recv = new DatagramPacket(buf, buf.length); DatagramPacket recv = new DatagramPacket(buf, buf.length);
System.out.println("ANCORA QUII");
App.game.multicastSocket.receive(recv); App.game.multicastSocket.receive(recv);
String s = new String(recv.getData()); String s = new String(recv.getData());
System.out.println("HSHSHSHS");
System.out.println(s);
msg = Message.toMessage(s); msg = Message.toMessage(s);
if(msg.message.equals("FINALSCORE")){ if(msg.message.equals("FINALSCORE")){
break; break;
@ -51,20 +47,13 @@ public class WaitForScore extends SwingWorker<Void,Void> {
if(msg.data != null) { if(msg.data != null) {
for (int i = 0; i < msg.data.size() - 1; i++) { for (int i = 0; i < msg.data.size() - 1; i++) {
String[] splitted = msg.data.get(i).split(":"); String[] splitted = msg.data.get(i).split(":");
System.out.println(splitted.toString());
ranks.addElement(new Pair<String, Integer>(splitted[0], new Integer(splitted[1]))); ranks.addElement(new Pair<String, Integer>(splitted[0], new Integer(splitted[1])));
} }
} }
App.game.ranks = ranks; App.game.ranks = ranks;
App.game.multicastSocket.leaveGroup(InetAddress.getByName(Config.ScoreMulticastServerURI)); App.game.multicastSocket.leaveGroup(InetAddress.getByName(Config.ScoreMulticastServerURI));
System.out.println(App.game.ranks);
System.out.println("ENDDDDd");
App.game.multicastSocket.disconnect();
App.game.multicastSocket.close(); App.game.multicastSocket.close();
} catch (UnknownHostException e) { } catch (UnknownHostException e) {
e.printStackTrace(); e.printStackTrace();
} catch (IOException e) { } catch (IOException e) {
@ -75,10 +64,7 @@ public class WaitForScore extends SwingWorker<Void,Void> {
@Override @Override
public void done(){ public void done(){
System.out.println("Done ranks");
App.game.ranks = ranks; App.game.ranks = ranks;
// App.game.multicastSocket.close();
//App.game.clientSocket.close();
try { try {
this.callback.execute(); this.callback.execute();

View file

@ -29,7 +29,6 @@ public class Logger {
fw = new FileWriter(logFile, true); fw = new FileWriter(logFile, true);
bw = new BufferedWriter(fw); bw = new BufferedWriter(fw);
out = new PrintWriter(bw); out = new PrintWriter(bw);
System.out.println(msg);
Date d = new Date(); Date d = new Date();
out.append("LOGGER ("+name+"): " + d.toString() + " - " + msg + "\n"); out.append("LOGGER ("+name+"): " + d.toString() + " - " + msg + "\n");
} catch (IOException e) { } catch (IOException e) {

View file

@ -94,7 +94,6 @@ public class GameServer implements Runnable{
ByteBuffer bufferWords = ByteBuffer.allocate(1024); ByteBuffer bufferWords = ByteBuffer.allocate(1024);
proxy = new ThreadProxy(msg, client, datagramChannel, bufferWords); proxy = new ThreadProxy(msg, client, datagramChannel, bufferWords);
threadPool.submit(proxy); threadPool.submit(proxy);
System.out.println(line);
} }
if (line.startsWith("CLOSE")) { if (line.startsWith("CLOSE")) {

View file

@ -24,7 +24,7 @@ public class NotificationServer implements INotificationServer {
public synchronized void registerForCallback(INotificationClient clientInterface) throws RemoteException { public synchronized void registerForCallback(INotificationClient clientInterface) throws RemoteException {
if(!clients.contains(clientInterface)){ if(!clients.contains(clientInterface)){
clients.add(clientInterface); clients.add(clientInterface);
System.out.print("New client registered"); System.out.println("New client registered");
} }
} }
@ -37,16 +37,20 @@ public class NotificationServer implements INotificationServer {
} }
public synchronized void sendInvitations(String username, DefaultListModel<String> users){ public synchronized void sendInvitations(String username, DefaultListModel<String> users){
System.out.println("Starting callbacks");
Iterator i = clients.iterator(); Iterator i = clients.iterator();
INotificationClient client = null;
System.out.println("Starting callbacks");
while (i.hasNext()) { while (i.hasNext()) {
INotificationClient client = (INotificationClient) i.next(); client = (INotificationClient) i.next();
try { try {
client.sendInvite(username, users); client.sendInvite(username, users);
} catch (RemoteException e) { } catch (RemoteException e) {
e.printStackTrace(); try {
unregisterForCallback(client);
} catch (RemoteException e1) {
e1.printStackTrace();
}
} }
} }
} }
} }

View file

@ -3,6 +3,7 @@ package com.texttwist.server.components;
import com.texttwist.server.models.Match; import com.texttwist.server.models.Match;
import com.texttwist.server.tasks.*; import com.texttwist.server.tasks.*;
import constants.Config; import constants.Config;
import javafx.util.Pair;
import models.Message; import models.Message;
import javax.swing.*; import javax.swing.*;
@ -46,7 +47,6 @@ public class ThreadProxy implements Callable<Boolean> {
public Boolean call() { public Boolean call() {
ByteBuffer buffer = ByteBuffer.allocate(1024); ByteBuffer buffer = ByteBuffer.allocate(1024);
byte[] byteMessage = null; byte[] byteMessage = null;
System.out.println("Selecting right task for new thread");
if(isValidToken(request.token)){ if(isValidToken(request.token)){
switch(request.message){ switch(request.message){
case "START_GAME": case "START_GAME":
@ -87,7 +87,6 @@ public class ThreadProxy implements Callable<Boolean> {
new SendMessageToAllPlayers(match, new Message("JOIN_TIMEOUT", "", "", new DefaultListModel<>()), socketChannel)); new SendMessageToAllPlayers(match, new Message("JOIN_TIMEOUT", "", "", new DefaultListModel<>()), socketChannel));
Boolean sendMessageJoinTimeoutRes = sendMessageJoinTimeout.get(); Boolean sendMessageJoinTimeoutRes = sendMessageJoinTimeout.get();
if(!sendMessageJoinTimeoutRes){ if(!sendMessageJoinTimeoutRes){
System.out.println("RIMOSSO");
activeMatches.remove(Match.findMatchIndex(activeMatches,match.matchCreator)); activeMatches.remove(Match.findMatchIndex(activeMatches,match.matchCreator));
return sendMessageJoinTimeoutRes; return sendMessageJoinTimeoutRes;
} }
@ -142,19 +141,16 @@ public class ThreadProxy implements Callable<Boolean> {
case "JOIN_GAME": case "JOIN_GAME":
Future<Boolean> joinMatch = threadPool.submit(new JoinMatch(request.sender, request.data, socketChannel)); Future<Boolean> joinMatch = threadPool.submit(new JoinMatch(request.sender, request.data, socketChannel));
try { try {
Match match = Match.findMatch(activeMatches, request.data.get(0));;
Boolean joinMatchRes = joinMatch.get(); Boolean joinMatchRes = joinMatch.get();
if(joinMatchRes){ if(joinMatchRes){
System.out.print("START THE GAME!!!!");
final Match match = Match.findMatch(activeMatches, request.data.get(0));
System.out.println(match.matchCreator);
if(match.joinTimeout == false) { if(match.joinTimeout == false) {
Future<DefaultListModel<String>> generateLetters = threadPool.submit(new GenerateLetters()); Future<DefaultListModel<String>> generateLetters = threadPool.submit(new GenerateLetters());
match.setLetters(generateLetters.get()); match.setLetters(generateLetters.get());
match.letters.addElement(String.valueOf(match.multicastId)); match.letters.addElement(String.valueOf(match.multicastId));
for (int i = 0; i < match.playersSocket.size(); i++) { for (int i = 0; i < match.playersSocket.size(); i++) {
System.out.println("INVIO");
SocketChannel socketClient = match.playersSocket.get(i).getValue(); SocketChannel socketClient = match.playersSocket.get(i).getValue();
if (socketClient != null) { if (socketClient != null) {
buffer.clear(); buffer.clear();
@ -166,18 +162,7 @@ public class ThreadProxy implements Callable<Boolean> {
try { try {
socketClient.write(buffer); socketClient.write(buffer);
} catch (IOException e) { } catch (IOException e) {
System.out.println("GAME NOT EXIST");
buffer = ByteBuffer.allocate(1024);
if (socketChannel != null) {
Message msg = new Message("MATCH_NOT_AVAILABLE", "", null, new DefaultListModel<>());
buffer.clear();
System.out.println("Il match richiesto non è più disponibile ");
byteMessage = msg.toString().getBytes();
buffer = ByteBuffer.wrap(byteMessage);
socketChannel.write(buffer);
e.printStackTrace();
matchNotAvailable = true;
}
} }
//clientSocket.close(); //clientSocket.close();
} }
@ -200,15 +185,9 @@ public class ThreadProxy implements Callable<Boolean> {
Message msg = new Message("FINALSCORE", "SERVER", "", match.getMatchPlayersScoreAsStringList()); Message msg = new Message("FINALSCORE", "SERVER", "", match.getMatchPlayersScoreAsStringList());
MulticastSocket multicastSocket = new MulticastSocket(match.multicastId); MulticastSocket multicastSocket = new MulticastSocket(match.multicastId);
System.out.println(multicastSocket);
System.out.println(match.multicastId);
InetAddress ia = InetAddress.getByName(Config.ScoreMulticastServerURI); InetAddress ia = InetAddress.getByName(Config.ScoreMulticastServerURI);
DatagramPacket hi = new DatagramPacket(msg.toString().getBytes(), msg.toString().length(), ia, match.multicastId); DatagramPacket hi = new DatagramPacket(msg.toString().getBytes(), msg.toString().length(), ia, match.multicastId);
System.out.println(msg.toString());
multicastSocket.send(hi); multicastSocket.send(hi);
System.out.println(Match.findMatchIndex(activeMatches, match.matchCreator));
activeMatches.remove(Match.findMatchIndex(activeMatches, match.matchCreator)); activeMatches.remove(Match.findMatchIndex(activeMatches, match.matchCreator));
//multicastSocket.disconnect(); //multicastSocket.disconnect();
//multicastSocket.close(); //multicastSocket.close();
@ -222,7 +201,19 @@ public class ThreadProxy implements Callable<Boolean> {
// break; // break;
//ULTIMO A JOINARE! INIZIA GIOCO //ULTIMO A JOINARE! INIZIA GIOCO
} else { } else {
System.out.print("WAIT FRIENDS"); if(match == null){
buffer = ByteBuffer.allocate(1024);
if (socketChannel != null) {
Message msg = new Message("MATCH_NOT_AVAILABLE", "", null, new DefaultListModel<>());
buffer.clear();
byteMessage = msg.toString().getBytes();
buffer = ByteBuffer.wrap(byteMessage);
socketChannel.write(buffer);
matchNotAvailable = true;
}
//Match non disponibile
}
//NON FARE NULLA, ASPETA GLI ALTRI //NON FARE NULLA, ASPETA GLI ALTRI
} }
} catch (InterruptedException e) { } catch (InterruptedException e) {

View file

@ -89,11 +89,9 @@ public class Match {
final Match m = findMatchByPlayer(player); final Match m = findMatchByPlayer(player);
m.printAll(); m.printAll();
System.out.println("ENTRO");
for (int i = 0; i < m.playersScore.size(); i++) { for (int i = 0; i < m.playersScore.size(); i++) {
if (m.playersScore.get(i).getKey().equals(player)) { if (m.playersScore.get(i).getKey().equals(player)) {
m.playersScore.set(i, new Pair<String, Integer>(player, score)); m.playersScore.set(i, new Pair<String, Integer>(player, score));
System.out.println("SEtting score of " + m.playersScore.get(i).getKey() + " to " + score);
} }
} }
} }

View file

@ -17,7 +17,6 @@ public class CheckOnlineUsers implements Callable<Boolean> {
@Override @Override
public Boolean call() throws Exception { public Boolean call() throws Exception {
System.out.print("Check If users are online!");
for(int i = 0; i < users.size(); i++){ for(int i = 0; i < users.size(); i++){
if(!(SessionsManager.getInstance().exists(users.get(i)))){ if(!(SessionsManager.getInstance().exists(users.get(i)))){
return false; return false;

View file

@ -14,7 +14,6 @@ public class ComputeHighscores implements Callable<DefaultListModel<String>> {
@Override @Override
public DefaultListModel<String> call() throws Exception { public DefaultListModel<String> call() throws Exception {
System.out.println("COMPUTE HIGHSCORE");
DefaultListModel<String> l = new DefaultListModel<>(); DefaultListModel<String> l = new DefaultListModel<>();
for(int i =0; i< AccountsManager.getInstance().users.size(); i++){ for(int i =0; i< AccountsManager.getInstance().users.size(); i++){
l.addElement(AccountsManager.getInstance().users.get(i).userName+":"+AccountsManager.getInstance().users.get(i).score); l.addElement(AccountsManager.getInstance().users.get(i).userName+":"+AccountsManager.getInstance().users.get(i).score);

View file

@ -40,12 +40,11 @@ public class JoinMatch implements Callable<Boolean> {
thisMatch.playersStatus.add(new Pair<>(name, 1)); thisMatch.playersStatus.add(new Pair<>(name, 1));
thisMatch.playersSocket.remove(j); thisMatch.playersSocket.remove(j);
thisMatch.playersSocket.add(new Pair<>(name, socketChannel)); thisMatch.playersSocket.add(new Pair<>(name, socketChannel));
System.out.println(playerName + ": JOINED");
return allJoined(thisMatch); return allJoined(thisMatch);
} }
} }
} }
return allJoined(thisMatch); return false;
} }

View file

@ -11,7 +11,6 @@ public class JoinTimeout implements Callable<Boolean> {
public JoinTimeout(Match match) { public JoinTimeout(Match match) {
this.match = match; this.match = match;
System.out.println("Match started, countdown for join!");
} }
@ -20,7 +19,6 @@ public class JoinTimeout implements Callable<Boolean> {
try { try {
Thread.currentThread().sleep(1*5*1000); Thread.currentThread().sleep(1*5*1000);
System.out.println("TIMEOUT - MANDA MESSAGGIO ERRORE A TUTTI GLI UTENTI DEL MATCH");
if(match.joinTimeout) { if(match.joinTimeout) {
return false; return false;
} }

View file

@ -12,7 +12,6 @@ public class MatchTimeout implements Callable<Boolean> {
public MatchTimeout() { public MatchTimeout() {
System.out.println("GamePage started, countdown for end words!");
} }
@ -20,11 +19,8 @@ public class MatchTimeout implements Callable<Boolean> {
public Boolean call() throws Exception { public Boolean call() throws Exception {
try { try {
Thread.currentThread().sleep(3*60*1000); //TODO 5*60*1000 Thread.currentThread().sleep(3*60*1000); //TODO 5*60*1000
System.out.println("timer scaduto");
System.out.println("TIMEOUT - SETTA A 0 il punteggio degli utenti che non hanno inviato le parole");
return false; return false;
} catch (InterruptedException e) { } catch (InterruptedException e) {
System.out.println("TIMER BLOCATO PRIMA");
return true; return true;
} }
} }

View file

@ -40,7 +40,6 @@ public class ReceiveWords implements Callable<Boolean>{
@Override @Override
public Boolean call() throws Exception { public Boolean call() throws Exception {
System.out.print("READY TO Receive words !!!!");
Future<Boolean> matchTimeout = threadPool.submit(new MatchTimeout()); Future<Boolean> matchTimeout = threadPool.submit(new MatchTimeout());
@ -49,14 +48,11 @@ public class ReceiveWords implements Callable<Boolean>{
while(true) { while(true) {
DatagramChannel.receive(buffer); DatagramChannel.receive(buffer);
buffer.flip(); buffer.flip();
System.out.println(buffer.limit());
int limits = buffer.limit(); int limits = buffer.limit();
byte bytes[] = new byte[limits]; byte bytes[] = new byte[limits];
buffer.get(bytes, 0, limits); buffer.get(bytes, 0, limits);
String rcv = new String(bytes); String rcv = new String(bytes);
System.out.println("RECEIVED: " + rcv);
buffer.rewind(); buffer.rewind();
msg = Message.toMessage(rcv); msg = Message.toMessage(rcv);
if(msg.message.equals("WORDS")){ if(msg.message.equals("WORDS")){
@ -67,12 +63,9 @@ public class ReceiveWords implements Callable<Boolean>{
//Se tutti hanno inviato le parole, blocca il timer e restituisci true //Se tutti hanno inviato le parole, blocca il timer e restituisci true
computeScore.get(); computeScore.get();
System.out.println(match.matchCreator);
System.out.println(match.allPlayersSendedHisScore());
if(match.allPlayersSendedHisScore()){ if(match.allPlayersSendedHisScore()){
System.out.println("TIMEOUT BLOCCATO, OK");
match.setUndefinedScorePlayersToZero(); match.setUndefinedScorePlayersToZero();
matchTimeout.cancel(true); matchTimeout.cancel(true);

View file

@ -26,7 +26,6 @@ public class SendInvitations implements Callable<Boolean> {
@Override @Override
public Boolean call() throws Exception { public Boolean call() throws Exception {
System.out.print("SendInvitations!");
try { try {
Server.notificationServer.sendInvitations(sender, users); Server.notificationServer.sendInvitations(sender, users);

View file

@ -29,16 +29,12 @@ public class SendMessageToAllPlayers implements Callable<Boolean> {
if(!match.isStarted()) { if(!match.isStarted()) {
for (int i = 0; i < match.playersSocket.size(); i++) { for (int i = 0; i < match.playersSocket.size(); i++) {
System.out.println(match.playersSocket.size());
socketChannel = match.playersSocket.get(i).getValue(); socketChannel = match.playersSocket.get(i).getValue();
if (socketChannel != null) { if (socketChannel != null) {
buffer.clear(); buffer.clear();
System.out.println("INVIO MESSAGGIO TIMEOUT A " + match.playersSocket.get(i).getKey());
byte[] byteMessage = message.toString().getBytes(); byte[] byteMessage = message.toString().getBytes();
buffer = ByteBuffer.wrap(byteMessage); buffer = ByteBuffer.wrap(byteMessage);
socketChannel.write(buffer); socketChannel.write(buffer);
//clientSocket.close();
System.out.println("SEND TO ALL" + message.toString());
} }
} }

View file

@ -25,8 +25,6 @@ public class WaitForPlayers implements Callable<Boolean> {
@Override @Override
public Boolean call() throws Exception { public Boolean call() throws Exception {
System.out.print("Wait for players!");
return true; return true;
} }
} }

View file

@ -5001,3 +5001,411 @@ LOGGER (Client1): Fri Jul 07 12:49:56 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 12:50:11 CEST 2017 - Invoked invitation with username=b|[a] LOGGER (Client1): Fri Jul 07 12:50:11 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 12:50:11 CEST 2017 - Invoked invitation with username=b|[a] LOGGER (Client1): Fri Jul 07 12:50:11 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 12:50:11 CEST 2017 - b ti ha sfidato! LOGGER (Client1): Fri Jul 07 12:50:11 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:33:18 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 14:33:20 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 14:33:31 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 14:33:31 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 14:33:31 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:37:47 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 14:37:48 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 14:37:59 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 14:37:59 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 14:37:59 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:43:06 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 14:43:08 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 14:43:17 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 14:43:17 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:43:17 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 14:44:41 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 14:44:42 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 14:44:57 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 14:44:57 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:44:57 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 14:45:57 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 14:45:59 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 14:46:09 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 14:46:09 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:46:09 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 14:46:21 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 14:46:21 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 14:46:21 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:46:32 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 14:46:32 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 14:46:32 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:46:54 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 14:46:54 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:46:54 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 14:47:42 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 14:47:43 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 14:47:52 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 14:47:52 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 14:47:52 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:48:20 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 14:48:20 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:48:20 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 14:49:31 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 14:49:33 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 14:49:43 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 14:49:43 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:49:43 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 14:50:03 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 14:50:03 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 14:50:03 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:50:25 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 14:50:25 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 14:50:25 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:50:50 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 14:50:50 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 14:50:50 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:51:08 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 14:51:08 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:51:08 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 14:51:18 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 14:51:18 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:51:18 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 14:51:42 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 14:51:42 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:51:42 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 14:51:55 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 14:51:55 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:51:55 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 14:52:10 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 14:52:10 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:52:10 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 14:52:17 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 14:52:38 CEST 2017 - Invoked invitation with username=b|[a, c]
LOGGER (Client1): Fri Jul 07 14:52:38 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:52:38 CEST 2017 - Invoked invitation with username=b|[a, c]
LOGGER (Client1): Fri Jul 07 14:52:38 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:52:38 CEST 2017 - Invoked invitation with username=b|[a, c]
LOGGER (Client1): Fri Jul 07 14:53:25 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 14:53:36 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 14:53:36 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:53:37 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 14:53:37 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 14:54:11 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 14:54:11 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 14:54:12 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 14:54:12 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:04:58 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:04:59 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:05:10 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:05:18 CEST 2017 - Invoked invitation with username=b|[c]
LOGGER (Client1): Fri Jul 07 15:05:18 CEST 2017 - Invoked invitation with username=b|[c]
LOGGER (Client1): Fri Jul 07 15:05:18 CEST 2017 - Invoked invitation with username=b|[c]
LOGGER (Client1): Fri Jul 07 15:05:18 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:05:33 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:05:33 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:05:33 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:05:33 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:05:55 CEST 2017 - Invoked invitation with username=b|[a, c]
LOGGER (Client1): Fri Jul 07 15:05:55 CEST 2017 - Invoked invitation with username=b|[a, c]
LOGGER (Client1): Fri Jul 07 15:05:55 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:05:55 CEST 2017 - Invoked invitation with username=b|[a, c]
LOGGER (Client1): Fri Jul 07 15:05:55 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:12:15 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:12:16 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:12:24 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 15:12:24 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 15:12:24 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:13:02 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:15:18 CEST 2017 - Invoked invitation with username=c|[b, a]
LOGGER (Client1): Fri Jul 07 15:15:18 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:15:18 CEST 2017 - Invoked invitation with username=c|[b, a]
LOGGER (Client1): Fri Jul 07 15:15:18 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:15:18 CEST 2017 - Invoked invitation with username=c|[b, a]
LOGGER (Client1): Fri Jul 07 15:16:24 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:16:25 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:16:27 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:16:43 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:17:11 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:17:11 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:17:11 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:17:48 CEST 2017 - Invoked invitation with username=a|[b, c]
LOGGER (Client1): Fri Jul 07 15:17:48 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:17:48 CEST 2017 - Invoked invitation with username=a|[b, c]
LOGGER (Client1): Fri Jul 07 15:18:41 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:18:41 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:18:41 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:19:03 CEST 2017 - Invoked invitation with username=b|[a, c]
LOGGER (Client1): Fri Jul 07 15:19:03 CEST 2017 - Invoked invitation with username=b|[a, c]
LOGGER (Client1): Fri Jul 07 15:19:03 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:19:23 CEST 2017 - Invoked invitation with username=a|[c]
LOGGER (Client1): Fri Jul 07 15:19:23 CEST 2017 - Invoked invitation with username=a|[c]
LOGGER (Client1): Fri Jul 07 15:19:39 CEST 2017 - Invoked invitation with username=b|[c]
LOGGER (Client1): Fri Jul 07 15:19:39 CEST 2017 - Invoked invitation with username=b|[c]
LOGGER (Client1): Fri Jul 07 15:20:03 CEST 2017 - Invoked invitation with username=a|[c]
LOGGER (Client1): Fri Jul 07 15:20:03 CEST 2017 - Invoked invitation with username=a|[c]
LOGGER (Client1): Fri Jul 07 15:20:14 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:20:30 CEST 2017 - Invoked invitation with username=a|[d]
LOGGER (Client1): Fri Jul 07 15:20:30 CEST 2017 - Invoked invitation with username=a|[d]
LOGGER (Client1): Fri Jul 07 15:20:30 CEST 2017 - Invoked invitation with username=a|[d]
LOGGER (Client1): Fri Jul 07 15:20:30 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:20:43 CEST 2017 - Invoked invitation with username=b|[d]
LOGGER (Client1): Fri Jul 07 15:20:43 CEST 2017 - Invoked invitation with username=b|[d]
LOGGER (Client1): Fri Jul 07 15:20:43 CEST 2017 - Invoked invitation with username=b|[d]
LOGGER (Client1): Fri Jul 07 15:20:43 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:20:58 CEST 2017 - Invoked invitation with username=d|[c]
LOGGER (Client1): Fri Jul 07 15:20:58 CEST 2017 - Invoked invitation with username=d|[c]
LOGGER (Client1): Fri Jul 07 15:20:58 CEST 2017 - Invoked invitation with username=d|[c]
LOGGER (Client1): Fri Jul 07 15:21:11 CEST 2017 - Invoked invitation with username=d|[b]
LOGGER (Client1): Fri Jul 07 15:21:11 CEST 2017 - d ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:21:11 CEST 2017 - Invoked invitation with username=d|[b]
LOGGER (Client1): Fri Jul 07 15:21:11 CEST 2017 - Invoked invitation with username=d|[b]
LOGGER (Client1): Fri Jul 07 15:21:26 CEST 2017 - Invoked invitation with username=a|[c]
LOGGER (Client1): Fri Jul 07 15:21:27 CEST 2017 - Invoked invitation with username=a|[c]
LOGGER (Client1): Fri Jul 07 15:21:27 CEST 2017 - Invoked invitation with username=a|[c]
LOGGER (Client1): Fri Jul 07 15:21:42 CEST 2017 - Invoked invitation with username=a|[as]
LOGGER (Client1): Fri Jul 07 15:21:42 CEST 2017 - Invoked invitation with username=a|[as]
LOGGER (Client1): Fri Jul 07 15:21:42 CEST 2017 - Invoked invitation with username=a|[as]
LOGGER (Client1): Fri Jul 07 15:21:56 CEST 2017 - Invoked invitation with username=a|[d]
LOGGER (Client1): Fri Jul 07 15:21:56 CEST 2017 - Invoked invitation with username=a|[d]
LOGGER (Client1): Fri Jul 07 15:21:56 CEST 2017 - Invoked invitation with username=a|[d]
LOGGER (Client1): Fri Jul 07 15:21:56 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:22:03 CEST 2017 - Invoked invitation with username=b|[as]
LOGGER (Client1): Fri Jul 07 15:22:03 CEST 2017 - Invoked invitation with username=b|[as]
LOGGER (Client1): Fri Jul 07 15:22:03 CEST 2017 - Invoked invitation with username=b|[as]
LOGGER (Client1): Fri Jul 07 15:22:12 CEST 2017 - Invoked invitation with username=as|[d]
LOGGER (Client1): Fri Jul 07 15:22:12 CEST 2017 - Invoked invitation with username=as|[d]
LOGGER (Client1): Fri Jul 07 15:22:12 CEST 2017 - Invoked invitation with username=as|[d]
LOGGER (Client1): Fri Jul 07 15:22:12 CEST 2017 - as ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:22:44 CEST 2017 - Invoked invitation with username=c|[d]
LOGGER (Client1): Fri Jul 07 15:22:44 CEST 2017 - Invoked invitation with username=c|[d]
LOGGER (Client1): Fri Jul 07 15:22:44 CEST 2017 - Invoked invitation with username=c|[d]
LOGGER (Client1): Fri Jul 07 15:22:44 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:22:52 CEST 2017 - Invoked invitation with username=a|[c]
LOGGER (Client1): Fri Jul 07 15:22:52 CEST 2017 - Invoked invitation with username=a|[c]
LOGGER (Client1): Fri Jul 07 15:22:52 CEST 2017 - Invoked invitation with username=a|[c]
LOGGER (Client1): Fri Jul 07 15:23:01 CEST 2017 - Invoked invitation with username=d|[c]
LOGGER (Client1): Fri Jul 07 15:23:01 CEST 2017 - Invoked invitation with username=d|[c]
LOGGER (Client1): Fri Jul 07 15:23:01 CEST 2017 - Invoked invitation with username=d|[c]
LOGGER (Client1): Fri Jul 07 15:23:22 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:23:33 CEST 2017 - Invoked invitation with username=a|[c]
LOGGER (Client1): Fri Jul 07 15:23:33 CEST 2017 - Invoked invitation with username=a|[c]
LOGGER (Client1): Fri Jul 07 15:23:33 CEST 2017 - Invoked invitation with username=a|[c]
LOGGER (Client1): Fri Jul 07 15:23:33 CEST 2017 - Invoked invitation with username=a|[c]
LOGGER (Client1): Fri Jul 07 15:23:33 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:24:01 CEST 2017 - Invoked invitation with username=b|[c]
LOGGER (Client1): Fri Jul 07 15:24:01 CEST 2017 - Invoked invitation with username=b|[c]
LOGGER (Client1): Fri Jul 07 15:24:01 CEST 2017 - Invoked invitation with username=b|[c]
LOGGER (Client1): Fri Jul 07 15:24:01 CEST 2017 - Invoked invitation with username=b|[c]
LOGGER (Client1): Fri Jul 07 15:24:01 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:24:02 CEST 2017 - Invoked invitation with username=d|[c]
LOGGER (Client1): Fri Jul 07 15:24:02 CEST 2017 - Invoked invitation with username=d|[c]
LOGGER (Client1): Fri Jul 07 15:24:02 CEST 2017 - Invoked invitation with username=d|[c]
LOGGER (Client1): Fri Jul 07 15:24:02 CEST 2017 - Invoked invitation with username=d|[c]
LOGGER (Client1): Fri Jul 07 15:24:02 CEST 2017 - d ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:25:05 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:25:08 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:25:35 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:25:35 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:25:36 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:25:36 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:25:36 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:25:37 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:25:37 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:25:38 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:25:38 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:25:38 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:27:16 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:27:18 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:27:20 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:27:43 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:27:43 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:27:43 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:27:43 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:27:47 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:27:47 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:27:47 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:27:47 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:28:25 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:28:26 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:28:31 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:28:50 CEST 2017 - Invoked invitation with username=a|[c]
LOGGER (Client1): Fri Jul 07 15:28:50 CEST 2017 - Invoked invitation with username=a|[c]
LOGGER (Client1): Fri Jul 07 15:28:50 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:28:50 CEST 2017 - Invoked invitation with username=a|[c]
LOGGER (Client1): Fri Jul 07 15:28:55 CEST 2017 - Invoked invitation with username=b|[c]
LOGGER (Client1): Fri Jul 07 15:28:55 CEST 2017 - Invoked invitation with username=b|[c]
LOGGER (Client1): Fri Jul 07 15:28:55 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:28:55 CEST 2017 - Invoked invitation with username=b|[c]
LOGGER (Client1): Fri Jul 07 15:29:13 CEST 2017 - Invoked invitation with username=c|[b]
LOGGER (Client1): Fri Jul 07 15:29:13 CEST 2017 - Invoked invitation with username=c|[b]
LOGGER (Client1): Fri Jul 07 15:29:13 CEST 2017 - Invoked invitation with username=c|[b]
LOGGER (Client1): Fri Jul 07 15:29:13 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:29:19 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:29:19 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:29:19 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:29:19 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:29:28 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:29:28 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:29:28 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:29:28 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:29:38 CEST 2017 - Invoked invitation with username=c|[b]
LOGGER (Client1): Fri Jul 07 15:29:38 CEST 2017 - Invoked invitation with username=c|[b]
LOGGER (Client1): Fri Jul 07 15:29:38 CEST 2017 - Invoked invitation with username=c|[b]
LOGGER (Client1): Fri Jul 07 15:29:38 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:29:43 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 15:29:43 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:29:43 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 15:29:43 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 15:29:49 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:29:49 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:29:49 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:29:49 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:30:02 CEST 2017 - Invoked invitation with username=a|[c]
LOGGER (Client1): Fri Jul 07 15:30:02 CEST 2017 - Invoked invitation with username=a|[c]
LOGGER (Client1): Fri Jul 07 15:30:02 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:30:02 CEST 2017 - Invoked invitation with username=a|[c]
LOGGER (Client1): Fri Jul 07 15:30:08 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:30:08 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:30:08 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:30:08 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:30:28 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:30:28 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:30:28 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:30:28 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:30:50 CEST 2017 - Invoked invitation with username=c|[b]
LOGGER (Client1): Fri Jul 07 15:30:50 CEST 2017 - Invoked invitation with username=c|[b]
LOGGER (Client1): Fri Jul 07 15:30:50 CEST 2017 - Invoked invitation with username=c|[b]
LOGGER (Client1): Fri Jul 07 15:30:50 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:30:55 CEST 2017 - Invoked invitation with username=a|[c]
LOGGER (Client1): Fri Jul 07 15:30:55 CEST 2017 - Invoked invitation with username=a|[c]
LOGGER (Client1): Fri Jul 07 15:30:55 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:30:56 CEST 2017 - Invoked invitation with username=a|[c]
LOGGER (Client1): Fri Jul 07 15:31:09 CEST 2017 - Invoked invitation with username=c|[b, a]
LOGGER (Client1): Fri Jul 07 15:31:09 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:31:09 CEST 2017 - Invoked invitation with username=c|[b, a]
LOGGER (Client1): Fri Jul 07 15:31:09 CEST 2017 - Invoked invitation with username=c|[b, a]
LOGGER (Client1): Fri Jul 07 15:31:09 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:31:39 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:31:39 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:31:39 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:31:39 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:31:42 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:31:42 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:31:43 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:31:43 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:31:59 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:32:11 CEST 2017 - Invoked invitation with username=c|[d]
LOGGER (Client1): Fri Jul 07 15:32:11 CEST 2017 - Invoked invitation with username=c|[d]
LOGGER (Client1): Fri Jul 07 15:32:11 CEST 2017 - Invoked invitation with username=c|[d]
LOGGER (Client1): Fri Jul 07 15:32:11 CEST 2017 - Invoked invitation with username=c|[d]
LOGGER (Client1): Fri Jul 07 15:32:11 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:32:18 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:32:19 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:32:19 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:32:19 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:32:19 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:32:34 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:32:34 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:32:34 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:32:34 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:32:34 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:33:37 CEST 2017 - Invoked invitation with username=a|[d]
LOGGER (Client1): Fri Jul 07 15:33:37 CEST 2017 - Invoked invitation with username=a|[d]
LOGGER (Client1): Fri Jul 07 15:33:37 CEST 2017 - Invoked invitation with username=a|[d]
LOGGER (Client1): Fri Jul 07 15:33:37 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:33:49 CEST 2017 - Invoked invitation with username=d|[c]
LOGGER (Client1): Fri Jul 07 15:33:49 CEST 2017 - d ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:33:49 CEST 2017 - Invoked invitation with username=d|[c]
LOGGER (Client1): Fri Jul 07 15:33:49 CEST 2017 - Invoked invitation with username=d|[c]
LOGGER (Client1): Fri Jul 07 15:34:11 CEST 2017 - Invoked invitation with username=d|[a]
LOGGER (Client1): Fri Jul 07 15:34:11 CEST 2017 - Invoked invitation with username=d|[a]
LOGGER (Client1): Fri Jul 07 15:34:11 CEST 2017 - d ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:34:11 CEST 2017 - Invoked invitation with username=d|[a]
LOGGER (Client1): Fri Jul 07 15:34:26 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:34:26 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:34:26 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:34:26 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:34:44 CEST 2017 - Invoked invitation with username=d|[c]
LOGGER (Client1): Fri Jul 07 15:34:44 CEST 2017 - d ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:34:44 CEST 2017 - Invoked invitation with username=d|[c]
LOGGER (Client1): Fri Jul 07 15:34:44 CEST 2017 - Invoked invitation with username=d|[c]
LOGGER (Client1): Fri Jul 07 15:35:45 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:35:47 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:36:22 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 15:36:22 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:36:35 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:36:35 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:36:35 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:36:35 CEST 2017 - Invoked invitation with username=a|[b]
LOGGER (Client1): Fri Jul 07 15:36:43 CEST 2017 - Invoked invitation with username=c|[b]
LOGGER (Client1): Fri Jul 07 15:36:43 CEST 2017 - Invoked invitation with username=c|[b]
LOGGER (Client1): Fri Jul 07 15:36:43 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:36:43 CEST 2017 - Invoked invitation with username=c|[b]
LOGGER (Client1): Fri Jul 07 15:36:55 CEST 2017 - Invoked invitation with username=b|[c]
LOGGER (Client1): Fri Jul 07 15:36:55 CEST 2017 - Invoked invitation with username=b|[c]
LOGGER (Client1): Fri Jul 07 15:36:55 CEST 2017 - Invoked invitation with username=b|[c]
LOGGER (Client1): Fri Jul 07 15:36:55 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:37:11 CEST 2017 - Invoked invitation with username=a|[c, b]
LOGGER (Client1): Fri Jul 07 15:37:11 CEST 2017 - Invoked invitation with username=a|[c, b]
LOGGER (Client1): Fri Jul 07 15:37:11 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:37:11 CEST 2017 - Invoked invitation with username=a|[c, b]
LOGGER (Client1): Fri Jul 07 15:37:11 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:37:40 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:37:40 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:37:40 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:37:40 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:37:45 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 15:37:45 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:37:45 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 15:37:45 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 15:37:51 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:37:51 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:37:51 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:37:51 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:37:56 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 15:37:56 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:37:56 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 15:37:56 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 15:41:43 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:41:45 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:41:46 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:41:48 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:42:17 CEST 2017 - Invoked invitation with username=a|[b, c, d]
LOGGER (Client1): Fri Jul 07 15:42:17 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:42:17 CEST 2017 - Invoked invitation with username=a|[b, c, d]
LOGGER (Client1): Fri Jul 07 15:42:17 CEST 2017 - Invoked invitation with username=a|[b, c, d]
LOGGER (Client1): Fri Jul 07 15:42:17 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:42:17 CEST 2017 - Invoked invitation with username=a|[b, c, d]
LOGGER (Client1): Fri Jul 07 15:42:17 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:42:40 CEST 2017 - Invoked invitation with username=b|[c]
LOGGER (Client1): Fri Jul 07 15:42:40 CEST 2017 - Invoked invitation with username=b|[c]
LOGGER (Client1): Fri Jul 07 15:42:40 CEST 2017 - Invoked invitation with username=b|[c]
LOGGER (Client1): Fri Jul 07 15:42:40 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:42:40 CEST 2017 - Invoked invitation with username=b|[c]
LOGGER (Client1): Fri Jul 07 15:42:45 CEST 2017 - Invoked invitation with username=a|[d]
LOGGER (Client1): Fri Jul 07 15:42:45 CEST 2017 - a ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:42:45 CEST 2017 - Invoked invitation with username=a|[d]
LOGGER (Client1): Fri Jul 07 15:42:45 CEST 2017 - Invoked invitation with username=a|[d]
LOGGER (Client1): Fri Jul 07 15:42:45 CEST 2017 - Invoked invitation with username=a|[d]
LOGGER (Client1): Fri Jul 07 15:42:49 CEST 2017 - Invoked invitation with username=d|[c]
LOGGER (Client1): Fri Jul 07 15:42:49 CEST 2017 - Invoked invitation with username=d|[c]
LOGGER (Client1): Fri Jul 07 15:42:49 CEST 2017 - Invoked invitation with username=d|[c]
LOGGER (Client1): Fri Jul 07 15:42:49 CEST 2017 - d ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:42:49 CEST 2017 - Invoked invitation with username=d|[c]
LOGGER (Client1): Fri Jul 07 15:42:54 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 15:42:54 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 15:42:54 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:42:54 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 15:42:54 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 15:43:58 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:44:00 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:44:01 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:44:03 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:46:54 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:46:55 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:46:57 CEST 2017 - Client starting ...
LOGGER (Client1): Fri Jul 07 15:47:12 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 15:47:12 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 15:47:12 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:47:12 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Fri Jul 07 15:47:18 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:47:18 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:47:18 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:47:18 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:47:43 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:47:43 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Fri Jul 07 15:47:43 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Fri Jul 07 15:47:43 CEST 2017 - Invoked invitation with username=c|[a]

View file

@ -7105,3 +7105,240 @@ LOGGER (Server): Fri Jul 07 12:50:03 CEST 2017 - Invoked login with username=a A
LOGGER (Server): Fri Jul 07 12:50:03 CEST 2017 - Login successfull LOGGER (Server): Fri Jul 07 12:50:03 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 12:50:07 CEST 2017 - Invoked login with username=b AND password=b LOGGER (Server): Fri Jul 07 12:50:07 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Fri Jul 07 12:50:07 CEST 2017 - Login successfull LOGGER (Server): Fri Jul 07 12:50:07 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 14:33:15 CEST 2017 - Server starting ...
LOGGER (Server): Fri Jul 07 14:33:16 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Fri Jul 07 14:33:16 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Fri Jul 07 14:33:16 CEST 2017 - Server started
LOGGER (Server): Fri Jul 07 14:33:23 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Fri Jul 07 14:33:23 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 14:33:27 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Fri Jul 07 14:33:27 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 14:37:44 CEST 2017 - Server starting ...
LOGGER (Server): Fri Jul 07 14:37:45 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Fri Jul 07 14:37:45 CEST 2017 - Server started
LOGGER (Server): Fri Jul 07 14:37:45 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Fri Jul 07 14:37:49 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Fri Jul 07 14:37:49 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 14:37:55 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Fri Jul 07 14:37:55 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 14:43:03 CEST 2017 - Server starting ...
LOGGER (Server): Fri Jul 07 14:43:03 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Fri Jul 07 14:43:03 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Fri Jul 07 14:43:03 CEST 2017 - Server started
LOGGER (Server): Fri Jul 07 14:43:09 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Fri Jul 07 14:43:09 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 14:43:13 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Fri Jul 07 14:43:13 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 14:44:37 CEST 2017 - Server starting ...
LOGGER (Server): Fri Jul 07 14:44:37 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Fri Jul 07 14:44:38 CEST 2017 - Server started
LOGGER (Server): Fri Jul 07 14:44:38 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Fri Jul 07 14:44:45 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Fri Jul 07 14:44:45 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 14:44:52 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Fri Jul 07 14:44:52 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 14:45:55 CEST 2017 - Server starting ...
LOGGER (Server): Fri Jul 07 14:45:56 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Fri Jul 07 14:45:56 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Fri Jul 07 14:45:56 CEST 2017 - Server started
LOGGER (Server): Fri Jul 07 14:46:00 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Fri Jul 07 14:46:01 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 14:46:04 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Fri Jul 07 14:46:04 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 14:47:38 CEST 2017 - Server starting ...
LOGGER (Server): Fri Jul 07 14:47:39 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Fri Jul 07 14:47:39 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Fri Jul 07 14:47:39 CEST 2017 - Server started
LOGGER (Server): Fri Jul 07 14:47:45 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Fri Jul 07 14:47:45 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 14:47:49 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Fri Jul 07 14:47:49 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 14:49:29 CEST 2017 - Server starting ...
LOGGER (Server): Fri Jul 07 14:49:29 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Fri Jul 07 14:49:29 CEST 2017 - Server started
LOGGER (Server): Fri Jul 07 14:49:29 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Fri Jul 07 14:49:38 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Fri Jul 07 14:49:38 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 14:49:40 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Fri Jul 07 14:49:40 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 14:52:05 CEST 2017 - Invoked logout with username=b AND token=a1b9r4bbt0vlo4k4sodcfjrv4r
LOGGER (Server): Fri Jul 07 14:52:05 CEST 2017 - Logout successfull
LOGGER (Server): Fri Jul 07 14:52:05 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Fri Jul 07 14:52:07 CEST 2017 - Invoked login with username=c AND password=c
LOGGER (Server): Fri Jul 07 14:52:07 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 14:52:22 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Fri Jul 07 14:52:22 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 14:53:28 CEST 2017 - Invoked login with username=c AND password=c
LOGGER (Server): Fri Jul 07 14:53:28 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:04:45 CEST 2017 - Server starting ...
LOGGER (Server): Fri Jul 07 15:04:46 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Fri Jul 07 15:04:46 CEST 2017 - Server started
LOGGER (Server): Fri Jul 07 15:04:46 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Fri Jul 07 15:04:49 CEST 2017 - Server starting ...
LOGGER (Server): Fri Jul 07 15:04:49 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Fri Jul 07 15:04:55 CEST 2017 - Server starting ...
LOGGER (Server): Fri Jul 07 15:04:56 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Fri Jul 07 15:04:56 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Fri Jul 07 15:04:56 CEST 2017 - Server started
LOGGER (Server): Fri Jul 07 15:05:01 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Fri Jul 07 15:05:01 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:05:05 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Fri Jul 07 15:05:05 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:05:15 CEST 2017 - Invoked login with username=c AND password=c
LOGGER (Server): Fri Jul 07 15:05:15 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:05:26 CEST 2017 - Invoked logout with username=a AND token=auhj8r7j3fj02ogno0q0udrjif
LOGGER (Server): Fri Jul 07 15:05:26 CEST 2017 - Logout successfull
LOGGER (Server): Fri Jul 07 15:05:26 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Fri Jul 07 15:05:29 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Fri Jul 07 15:05:29 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:12:12 CEST 2017 - Server starting ...
LOGGER (Server): Fri Jul 07 15:12:12 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Fri Jul 07 15:12:12 CEST 2017 - Server started
LOGGER (Server): Fri Jul 07 15:12:12 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Fri Jul 07 15:12:18 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Fri Jul 07 15:12:18 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:12:22 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Fri Jul 07 15:12:22 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:13:04 CEST 2017 - Invoked login with username=c AND password=c
LOGGER (Server): Fri Jul 07 15:13:04 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:16:19 CEST 2017 - Server starting ...
LOGGER (Server): Fri Jul 07 15:16:19 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Fri Jul 07 15:16:19 CEST 2017 - Server started
LOGGER (Server): Fri Jul 07 15:16:19 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Fri Jul 07 15:16:28 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Fri Jul 07 15:16:28 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:16:35 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Fri Jul 07 15:16:35 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:17:43 CEST 2017 - Invoked login with username=c AND password=c
LOGGER (Server): Fri Jul 07 15:17:43 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:19:58 CEST 2017 - Invoked logout with username=c AND token=cm20f0pmus3s7kb35guaipt26j
LOGGER (Server): Fri Jul 07 15:19:58 CEST 2017 - Logout successfull
LOGGER (Server): Fri Jul 07 15:19:58 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Fri Jul 07 15:20:00 CEST 2017 - Invoked login with username=c AND password=c
LOGGER (Server): Fri Jul 07 15:20:00 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:20:22 CEST 2017 - Invoked login with username=d AND password=
LOGGER (Server): Fri Jul 07 15:20:22 CEST 2017 - Login unsuccessfull
LOGGER (Server): Fri Jul 07 15:20:25 CEST 2017 - Invoked login with username=d AND password=d
LOGGER (Server): Fri Jul 07 15:20:25 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:21:30 CEST 2017 - Invoked logout with username=c AND token=jelupnh37pqhno34srgavcjbhl
LOGGER (Server): Fri Jul 07 15:21:30 CEST 2017 - Logout successfull
LOGGER (Server): Fri Jul 07 15:21:30 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Fri Jul 07 15:21:37 CEST 2017 - Invoked register with username=as AND password=as
LOGGER (Server): Fri Jul 07 15:21:37 CEST 2017 - Registration successfull
LOGGER (Server): Fri Jul 07 15:21:39 CEST 2017 - Invoked login with username=as AND password=as
LOGGER (Server): Fri Jul 07 15:21:39 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:22:37 CEST 2017 - Invoked logout with username=as AND token=d3vf9ci3k7n1upiouulm8vbl1b
LOGGER (Server): Fri Jul 07 15:22:37 CEST 2017 - Logout successfull
LOGGER (Server): Fri Jul 07 15:22:37 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Fri Jul 07 15:22:40 CEST 2017 - Invoked login with username=c AND password=c
LOGGER (Server): Fri Jul 07 15:22:40 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:23:29 CEST 2017 - Invoked login with username=c AND password=c
LOGGER (Server): Fri Jul 07 15:23:29 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:25:14 CEST 2017 - Invoked login with username=c AND password=c
LOGGER (Server): Fri Jul 07 15:25:14 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:25:14 CEST 2017 - Invoked logout with username=c AND token=6n4nkantivpt703s45bp35c8gu
LOGGER (Server): Fri Jul 07 15:25:14 CEST 2017 - Logout successfull
LOGGER (Server): Fri Jul 07 15:25:14 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Fri Jul 07 15:25:16 CEST 2017 - Invoked login with username=c AND password=c
LOGGER (Server): Fri Jul 07 15:25:16 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:25:25 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Fri Jul 07 15:25:25 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:25:25 CEST 2017 - Invoked logout with username=b AND token=43cl7p67jvanhughacr8bom4q3
LOGGER (Server): Fri Jul 07 15:25:25 CEST 2017 - Logout successfull
LOGGER (Server): Fri Jul 07 15:25:25 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Fri Jul 07 15:25:27 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Fri Jul 07 15:25:27 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:27:14 CEST 2017 - Server starting ...
LOGGER (Server): Fri Jul 07 15:27:14 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Fri Jul 07 15:27:14 CEST 2017 - Server started
LOGGER (Server): Fri Jul 07 15:27:14 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Fri Jul 07 15:27:33 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Fri Jul 07 15:27:33 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:27:35 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Fri Jul 07 15:27:35 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:27:38 CEST 2017 - Invoked login with username=c AND password=c
LOGGER (Server): Fri Jul 07 15:27:38 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:28:22 CEST 2017 - Server starting ...
LOGGER (Server): Fri Jul 07 15:28:22 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Fri Jul 07 15:28:22 CEST 2017 - Server started
LOGGER (Server): Fri Jul 07 15:28:22 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Fri Jul 07 15:28:38 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Fri Jul 07 15:28:38 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:28:40 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Fri Jul 07 15:28:40 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:28:42 CEST 2017 - Invoked login with username=c AND password=c
LOGGER (Server): Fri Jul 07 15:28:42 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:32:08 CEST 2017 - Invoked login with username=d AND password=d
LOGGER (Server): Fri Jul 07 15:32:08 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:33:11 CEST 2017 - Invoked logout with username=b AND token=ltlev14ijvfvnccbsomju0ru8q
LOGGER (Server): Fri Jul 07 15:33:11 CEST 2017 - Logout successfull
LOGGER (Server): Fri Jul 07 15:33:11 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Fri Jul 07 15:33:13 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Fri Jul 07 15:33:13 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:33:13 CEST 2017 - Invoked logout with username=a AND token=aokdj816tvktjqpno4t315duo0
LOGGER (Server): Fri Jul 07 15:33:13 CEST 2017 - Logout successfull
LOGGER (Server): Fri Jul 07 15:33:13 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Fri Jul 07 15:33:15 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Fri Jul 07 15:33:15 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:35:54 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Fri Jul 07 15:35:54 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:35:54 CEST 2017 - Invoked logout with username=b AND token=khg8l3r8a3ffsjndj2q9fscrtq
LOGGER (Server): Fri Jul 07 15:35:54 CEST 2017 - Logout successfull
LOGGER (Server): Fri Jul 07 15:35:54 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Fri Jul 07 15:35:56 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Fri Jul 07 15:35:56 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:36:00 CEST 2017 - Invoked login with username=c AND password=c
LOGGER (Server): Fri Jul 07 15:36:00 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:36:03 CEST 2017 - Invoked logout with username=c AND token=jn9rohbva6mpk664s9lgnlub2s
LOGGER (Server): Fri Jul 07 15:36:03 CEST 2017 - Logout successfull
LOGGER (Server): Fri Jul 07 15:36:03 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Fri Jul 07 15:36:04 CEST 2017 - Invoked login with username=c AND password=c
LOGGER (Server): Fri Jul 07 15:36:04 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:36:17 CEST 2017 - Invoked logout with username=b AND token=jserbm8ilfkpbd7pk833v7b5n
LOGGER (Server): Fri Jul 07 15:36:17 CEST 2017 - Logout successfull
LOGGER (Server): Fri Jul 07 15:36:17 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Fri Jul 07 15:36:19 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Fri Jul 07 15:36:19 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:38:18 CEST 2017 - Invoked logout with username=b AND token=ovg1tvdavtg7j1oca0pqe21us6
LOGGER (Server): Fri Jul 07 15:38:18 CEST 2017 - Logout successfull
LOGGER (Server): Fri Jul 07 15:38:18 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Fri Jul 07 15:38:19 CEST 2017 - Invoked logout with username=c AND token=sr52t3bd276akut3og2um172se
LOGGER (Server): Fri Jul 07 15:38:19 CEST 2017 - Logout successfull
LOGGER (Server): Fri Jul 07 15:38:19 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Fri Jul 07 15:39:57 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Fri Jul 07 15:39:57 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:40:00 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Fri Jul 07 15:40:00 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:40:41 CEST 2017 - Invoked logout with username=b AND token=nna88vl6enpq2v51710l1f05om
LOGGER (Server): Fri Jul 07 15:40:41 CEST 2017 - Logout successfull
LOGGER (Server): Fri Jul 07 15:40:41 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Fri Jul 07 15:41:41 CEST 2017 - Server starting ...
LOGGER (Server): Fri Jul 07 15:41:41 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Fri Jul 07 15:41:41 CEST 2017 - Server started
LOGGER (Server): Fri Jul 07 15:41:41 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Fri Jul 07 15:42:02 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Fri Jul 07 15:42:02 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:42:04 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Fri Jul 07 15:42:04 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:42:07 CEST 2017 - Invoked login with username=c AND password=c
LOGGER (Server): Fri Jul 07 15:42:07 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:42:10 CEST 2017 - Invoked login with username=d AND password=d
LOGGER (Server): Fri Jul 07 15:42:10 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:44:04 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Fri Jul 07 15:44:04 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:44:08 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Fri Jul 07 15:44:08 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:44:13 CEST 2017 - Invoked login with username=c AND password=c
LOGGER (Server): Fri Jul 07 15:44:13 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:44:17 CEST 2017 - Invoked login with username=d AND password=d
LOGGER (Server): Fri Jul 07 15:44:17 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:46:51 CEST 2017 - Server starting ...
LOGGER (Server): Fri Jul 07 15:46:51 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Fri Jul 07 15:46:51 CEST 2017 - Server started
LOGGER (Server): Fri Jul 07 15:46:52 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Fri Jul 07 15:47:05 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Fri Jul 07 15:47:05 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:47:07 CEST 2017 - Invoked login with username=c AND password=c
LOGGER (Server): Fri Jul 07 15:47:07 CEST 2017 - Login successfull
LOGGER (Server): Fri Jul 07 15:47:10 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Fri Jul 07 15:47:10 CEST 2017 - Login successfull