implementazione persistenza

This commit is contained in:
Lorenzo Iovino 2017-07-11 19:20:06 +02:00
parent 406a5647b8
commit eac6e43420
33 changed files with 1876 additions and 736 deletions

13
.idea/artifacts/TextTwist_jar.xml generated Normal file
View file

@ -0,0 +1,13 @@
<component name="ArtifactManager">
<artifact type="jar" name="TextTwist:jar">
<output-path>$PROJECT_DIR$/out/artifacts/TextTwist_jar</output-path>
<root id="archive" name="TextTwist.jar">
<element id="module-output" name="Client" />
<element id="module-output" name="Commons" />
<element id="module-output" name="Server" />
<element id="module-output" name="TextTwist" />
<element id="extracted-dir" path="$MAVEN_REPOSITORY$/com/github/cliftonlabs/json-simple/2.1.2/json-simple-2.1.2.jar" path-in-jar="/" />
<element id="dir-copy" path="$PROJECT_DIR$/Server/resources" />
</root>
</artifact>
</component>

View file

@ -0,0 +1,11 @@
<component name="libraryTable">
<library name="redis.clients:jedis:2.9.0" type="repository">
<properties maven-id="redis.clients:jedis:2.9.0" />
<CLASSES>
<root url="jar://$MAVEN_REPOSITORY$/redis/clients/jedis/2.9.0/jedis-2.9.0.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/org/apache/commons/commons-pool2/2.4.2/commons-pool2-2.4.2.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</component>

1214
.idea/workspace.xml generated

File diff suppressed because it is too large Load diff

View file

@ -6,7 +6,6 @@ import com.texttwist.client.tasks.StartGame;
import com.texttwist.client.tasks.WaitForPlayers; import com.texttwist.client.tasks.WaitForPlayers;
import com.texttwist.client.tasks.WaitForScore; import com.texttwist.client.tasks.WaitForScore;
import javax.swing.*; import javax.swing.*;
import java.nio.ByteBuffer;
/** /**
* GamePage Controller * GamePage Controller
@ -19,14 +18,6 @@ public class GameController {
this.game = game; this.game = game;
} }
public DefaultListModel<String> getLetters(){
return App.game.letters;
}
public DefaultListModel<String> getWords() {
return App.game.words;
}
public SwingWorker waitForPlayers(SwingWorker callback) { public SwingWorker waitForPlayers(SwingWorker callback) {
return new WaitForPlayers(callback); return new WaitForPlayers(callback);
} }

View file

@ -4,7 +4,6 @@ import com.texttwist.client.App;
import com.texttwist.client.pages.GamePage; import com.texttwist.client.pages.GamePage;
import com.texttwist.client.pages.MenuPage; import com.texttwist.client.pages.MenuPage;
import com.texttwist.client.pages.Page; import com.texttwist.client.pages.Page;
import com.texttwist.client.services.NotificationClient;
import com.texttwist.client.tasks.InvitePlayers; import com.texttwist.client.tasks.InvitePlayers;
import com.texttwist.client.ui.TTDialog; import com.texttwist.client.ui.TTDialog;
import constants.Config; import constants.Config;
@ -15,7 +14,6 @@ import models.Message;
import javax.swing.*; import javax.swing.*;
import java.io.*; import java.io.*;
import java.net.InetAddress;
import java.net.InetSocketAddress; import java.net.InetSocketAddress;
import java.net.MulticastSocket; import java.net.MulticastSocket;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;
@ -24,7 +22,6 @@ import java.rmi.NotBoundException;
import java.rmi.RemoteException; import java.rmi.RemoteException;
import java.rmi.registry.LocateRegistry; import java.rmi.registry.LocateRegistry;
import java.rmi.registry.Registry; import java.rmi.registry.Registry;
import java.rmi.server.UnicastRemoteObject;
import java.util.concurrent.*; import java.util.concurrent.*;
/** /**
@ -34,23 +31,24 @@ public class Game {
public Integer multicastId = 0 ; public Integer multicastId = 0 ;
public DefaultListModel<String> pendingList = new DefaultListModel<String>(); public DefaultListModel<String> pendingList = new DefaultListModel<String>();
private ByteBuffer buffer = ByteBuffer.allocate(1024);
public DefaultListModel<String> words = new DefaultListModel<String>(); public DefaultListModel<String> words = new DefaultListModel<String>();
public DefaultListModel<String> letters = new DefaultListModel<String>(); public DefaultListModel<String> letters = new DefaultListModel<String>();
public DefaultListModel<Pair<String,Integer>> ranks = new DefaultListModel<>();
public INotificationClient stub;
public DefaultListModel<Pair<String,Integer>> globalRanks = new DefaultListModel<>(); public DefaultListModel<Pair<String,Integer>> globalRanks = new DefaultListModel<>();
public DefaultListModel<Pair<String,Integer>> ranks = new DefaultListModel<>();
public INotificationClient notificationStub;
public MulticastSocket multicastSocket; public MulticastSocket multicastSocket;
public INotificationServer server; public SocketChannel clientSocket;
public Boolean isStarted = false; public INotificationServer notificationServer;
public SocketChannel clientSocket = null;
public Boolean gameIsStarted = false;
private ByteBuffer buffer = ByteBuffer.allocate(1024);
public Game(){ public Game(){
Registry registry = null; Registry registry = null;
try { try {
registry = LocateRegistry.getRegistry(Config.NotificationServerStubPort); registry = LocateRegistry.getRegistry(Config.NotificationServerStubPort);
server = (INotificationServer) registry.lookup(Config.NotificationServerName); notificationServer = (INotificationServer) registry.lookup(Config.NotificationServerName);
} catch (RemoteException e) { } catch (RemoteException e) {
e.printStackTrace(); e.printStackTrace();
@ -62,8 +60,6 @@ public class Game {
try { try {
clientSocket = SocketChannel.open(socketAddress); clientSocket = SocketChannel.open(socketAddress);
clientSocket.configureBlocking(false); clientSocket.configureBlocking(false);
System.out.println("Join multicast group");
} catch (IOException e) { } catch (IOException e) {
e.printStackTrace(); e.printStackTrace();
} }
@ -71,15 +67,15 @@ public class Game {
public void newMatch(String userName) { public void newMatch(String userName) {
//Aggiungi alla lista di inviti //Add to pending invitation list
try { try {
this.addToPendingList(userName); this.addToPendingList(userName);
} catch (IOException e) { } catch (IOException e) {
e.printStackTrace(); e.printStackTrace();
} }
if(!App.game.isStarted) { if(!App.game.gameIsStarted) {
//Visualizza popup //Show invitation popup
new TTDialog("success", "New invitation from: " + userName + "!", new TTDialog("success", "New invitation from: " + userName + "!",
new Callable() { new Callable() {
@Override @Override
@ -98,8 +94,12 @@ public class Game {
} }
public void setWords(DefaultListModel<String> words){ public DefaultListModel<String> getLetters(){
this.words = words; return App.game.letters;
}
public DefaultListModel<String> getWords() {
return App.game.words;
} }
public void setLetters(DefaultListModel<String> letters){ public void setLetters(DefaultListModel<String> letters){
@ -107,19 +107,17 @@ public class Game {
} }
public void joinMatch(String matchName) { public void joinMatch(String matchName) {
//Svuota la lista dei game pendenti e joina il game selezionato //Clear pending invitation list and join selected match
if(!isStarted) { if(!gameIsStarted) {
this.pendingList.clear(); this.pendingList.clear();
try { try {
//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);
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 = message.toString().getBytes();
buffer = ByteBuffer.wrap(byteMessage); buffer = ByteBuffer.wrap(byteMessage);
clientSocket.write(buffer); clientSocket.write(buffer);
new GamePage(Page.window); new GamePage(Page.window);
} catch (IOException e) { } catch (IOException e) {
@ -128,7 +126,6 @@ public class Game {
} }
} }
public Object play(DefaultListModel<String> userNames) throws IOException { public Object play(DefaultListModel<String> userNames) throws IOException {
SwingWorker worker = new InvitePlayers(userNames,clientSocket); SwingWorker worker = new InvitePlayers(userNames,clientSocket);
worker.execute(); worker.execute();
@ -139,7 +136,7 @@ public class Game {
this.multicastId = multicastId; this.multicastId = multicastId;
} }
public void addToPendingList(String username) throws IOException { private void addToPendingList(String username) throws IOException {
pendingList.addElement(username); pendingList.addElement(username);
} }
} }

View file

@ -8,24 +8,24 @@ import java.awt.*;
import java.io.IOException; import java.io.IOException;
import java.util.concurrent.*; import java.util.concurrent.*;
import static com.texttwist.client.App.game;
/** /**
* GamePage Page * GamePage Page
*/ */
public class GamePage extends Page { public class GamePage extends Page {
private TTContainer gameContainer; private TTContainer gameContainer;
private TTGameBox gameBox;
private GameController gameController; private GameController gameController;
public Timer timer; public Timer timer;
/*Spawnig points fixed and not modifiable*/ /*Spawning points fixed and not modifiable*/
private final DefaultListModel<Point> letterSpawningPoints = setLetterSpawningPoint(); private final DefaultListModel<Point> letterSpawningPoints = setLetterSpawningPoint();
/*Available spawning points*/ /*Available spawning points*/
private DefaultListModel<Point> availableLetterSpawningPoint = new DefaultListModel<>(); private DefaultListModel<Point> availableLetterSpawningPoint = new DefaultListModel<>();
public GamePage(JFrame window) throws IOException { public GamePage(JFrame window) throws IOException {
super(window); super(window);
gameController = new GameController(this); gameController = new GameController(this);
availableLetterSpawningPoint.clear(); availableLetterSpawningPoint.clear();
@ -89,11 +89,12 @@ public class GamePage extends Page {
public void showLetters(){ public void showLetters(){
/* Place letters in a available random spawning point */ /* Place letters in an available random spawning point */
for(int i = 0; i < gameController.getLetters().size()-1; i++){ DefaultListModel<String> letters = game.getLetters();
for(int i = 0; i < letters.size()-1; i++){
new TTLetter( new TTLetter(
occupyRandomPosition(), occupyRandomPosition(),
gameController.getLetters().get(i), letters.get(i),
gameContainer gameContainer
); );
} }
@ -115,11 +116,11 @@ public class GamePage extends Page {
root root
); );
gameBox = new TTGameBox( new TTGameBox(
new Point(150, 90), new Point(150, 90),
new Dimension(250, 40), new Dimension(250, 40),
"Insert word and Press ENTER!", "Insert word and Press ENTER!",
gameController.getWords(), game.getWords(),
gameContainer gameContainer
); );

View file

@ -15,7 +15,6 @@ public class HighscoresPage extends Page{
private TTContainer highscoreContainer; private TTContainer highscoreContainer;
private Boolean isPartialScore; private Boolean isPartialScore;
private TTScrollList highscoreList;
public JFrame window; public JFrame window;
private HighscoresController highscoreController; private HighscoresController highscoreController;
@ -30,7 +29,7 @@ public class HighscoresPage extends Page{
} }
public void showHighscoreList(){ public void showHighscoreList(){
highscoreList = new TTScrollList( new TTScrollList(
new Point(20, 60), new Point(20, 60),
new Dimension(515, 142), new Dimension(515, 142),
highscoreController.getRanks(isPartialScore), highscoreController.getRanks(isPartialScore),

View file

@ -81,7 +81,7 @@ public class HomePage extends Page {
new TTLabelBtn( new TTLabelBtn(
new Point(360, 200), new Point(360, 200),
new Dimension(210, 50), new Dimension(210, 50),
"RegisterPage!", "Register!",
new Font(Palette.inputBox_font.getFontName(), Font.BOLD, 34), new Font(Palette.inputBox_font.getFontName(), Font.BOLD, 34),
null, null,
new Callable<Object>() { new Callable<Object>() {

View file

@ -22,7 +22,6 @@ public class MatchRequestsPage extends Page{
window.setVisible(true); window.setVisible(true);
} }
@Override @Override
public void createUIComponents() throws IOException { public void createUIComponents() throws IOException {
addLogo(root); addLogo(root);
@ -56,7 +55,6 @@ public class MatchRequestsPage extends Page{
super.mouseClicked(evt); super.mouseClicked(evt);
JList thisList = (JList)evt.getSource(); JList thisList = (JList)evt.getSource();
if (evt.getClickCount() == 2) { if (evt.getClickCount() == 2) {
// Double-click detected
int index = thisList.locationToIndex(evt.getPoint()); int index = thisList.locationToIndex(evt.getPoint());
App.game.joinMatch(App.game.pendingList.get(index)); App.game.joinMatch(App.game.pendingList.get(index));
} }

View file

@ -57,7 +57,7 @@ public class MatchSetupPage extends Page{
new Callable<Object>() { new Callable<Object>() {
@Override @Override
public Object call() throws Exception { public Object call() throws Exception {
//If server response ok, start play, else error //If notificationServer response ok, start play, else error
return matchSetupController.play(searchUserBar.list); return matchSetupController.play(searchUserBar.list);
} }
} }

View file

@ -100,7 +100,7 @@ public class MenuPage extends Page{
new Callable<Object>() { new Callable<Object>() {
@Override @Override
public Object call() throws Exception { public Object call() throws Exception {
menuController.logout(App.session.account.userName, App.game.stub); menuController.logout(App.session.account.userName, App.game.notificationStub);
return new HomePage(Page.window); return new HomePage(Page.window);
} }
}, },

View file

@ -57,7 +57,7 @@ public class Page {
public void addBack(TTContainer parent, Callable<Object> clickHandler) { public void addBack(TTContainer parent, Callable<Object> clickHandler) {
try { try {
TTImageBtn back = new TTImageBtn( new TTImageBtn(
new Point(0, 0), new Point(0, 0),
new Dimension(50, 50), new Dimension(50, 50),
new ImageIcon(new File("./Client/resources/images/back.png").getCanonicalPath()), new ImageIcon(new File("./Client/resources/images/back.png").getCanonicalPath()),

View file

@ -36,7 +36,7 @@ public class RegisterPage extends Page {
TTLabel registerText = new TTLabel( TTLabel registerText = new TTLabel(
new Point(70,35), new Point(70,35),
new Dimension(400,40), new Dimension(400,40),
"<html><h2>Insert your datas and press RegisterPage!</h2></html>", "Insert your datas and press Register!",
new Font(Palette.inputBox_font.getFontName(), Font.ITALIC, 12), new Font(Palette.inputBox_font.getFontName(), Font.ITALIC, 12),
null, null,
registerDataContainer registerDataContainer
@ -58,11 +58,10 @@ public class RegisterPage extends Page {
TTButton register = new TTButton( TTButton register = new TTButton(
new Point(70,150), new Point(70,150),
new Dimension(430,50), new Dimension(430,50),
"RegisterPage!", "Register!",
new Callable<Object>() { new Callable<Object>() {
@Override @Override
public Object call() throws Exception { public Object call() throws Exception {
//TODO CHIAMA API PER LOGIN E SE TUTTO OKEY MANDA A PAGINA DEL MENU
Response res = registerController.register(usernameField.getText(), String.valueOf(passwordField.getPassword())); Response res = registerController.register(usernameField.getText(), String.valueOf(passwordField.getPassword()));
if (res.code == 200){ if (res.code == 200){
return new TTDialog("success", res.message, return new TTDialog("success", res.message,

View file

@ -1,17 +1,13 @@
package com.texttwist.client.services; package com.texttwist.client.services;
import com.texttwist.client.App; import com.texttwist.client.App;
import com.texttwist.client.models.Game;
import constants.Config; import constants.Config;
import interfaces.IAuth; import interfaces.IAuth;
import interfaces.INotificationClient; import interfaces.INotificationClient;
import interfaces.INotificationServer;
import models.Response; import models.Response;
import java.net.MalformedURLException; import java.net.MalformedURLException;
import java.rmi.Naming; import java.rmi.Naming;
import java.rmi.NotBoundException; import java.rmi.NotBoundException;
import java.rmi.RemoteException; import java.rmi.RemoteException;
import java.rmi.registry.LocateRegistry;
import java.rmi.registry.Registry;
import java.rmi.server.UnicastRemoteObject; import java.rmi.server.UnicastRemoteObject;
/** /**
@ -23,13 +19,9 @@ public class AuthService {
public Response login(String userName, String password) throws RemoteException, NotBoundException, MalformedURLException { public Response login(String userName, String password) throws RemoteException, NotBoundException, MalformedURLException {
try { try {
/* si registra per la callback */
System.out.println("Registering for callback");
INotificationClient callbackObj = new NotificationClient(); INotificationClient callbackObj = new NotificationClient();
App.game.stub = (INotificationClient) UnicastRemoteObject.exportObject(callbackObj, 0); App.game.notificationStub = (INotificationClient) UnicastRemoteObject.exportObject(callbackObj, 0);
App.game.notificationServer.registerForCallback(App.game.notificationStub);
App.game.server.registerForCallback(App.game.stub);
} catch (RemoteException e) { } catch (RemoteException e) {
e.printStackTrace(); e.printStackTrace();
} }

View file

@ -1,39 +0,0 @@
package com.texttwist.client.services;
import com.texttwist.client.App;
import com.texttwist.client.tasks.FetchHighscore;
import com.texttwist.client.tasks.WaitForScore;
import constants.Config;
import javafx.util.Pair;
import models.Message;
import javax.swing.*;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.nio.ByteBuffer;
import java.nio.channels.SocketChannel;
import java.util.concurrent.Callable;
/**
* Created by loke on 28/06/2017.
*/
public class HighscoresService {
ByteBuffer buffer = ByteBuffer.allocate(1024);
public DefaultListModel<String> ranks = new DefaultListModel<>();
SocketChannel clientSocket = null;
public HighscoresService(){
InetSocketAddress socketAddress = new InetSocketAddress(Config.GameServerURI, Config.GameServerPort);
try {
clientSocket = SocketChannel.open(socketAddress);
clientSocket.configureBlocking(false);
} catch (IOException e) {
e.printStackTrace();
}
}
}

View file

@ -22,10 +22,10 @@ public class NotificationClient implements INotificationClient {
if(App.session != null) { if(App.session != null) {
if (users.contains(App.session.account.userName)) { if (users.contains(App.session.account.userName)) {
Logger.write(userName + " ti ha sfidato!"); Logger.write(userName + " send a invitation!");
App.game.newMatch(userName); App.game.newMatch(userName);
} else { } else {
Logger.write("L'utente è sloggato"); Logger.write("User " + userName + " is slogged");
} }
} }
return null; return null;

View file

@ -25,9 +25,9 @@ public class StartGame extends SwingWorker<Void,Void> {
@Override @Override
public Void doInBackground(){ public Void doInBackground(){
App.game.isStarted=true; App.game.gameIsStarted =true;
//Mostra pannello di conferma che le lettere sono tutte arrivate //Mostra pannello di conferma che le lettere sono tutte arrivate
new TTDialog("success", "GamePage is ready. Press OK to start!", new TTDialog("success", "Game is ready. Press OK to start!",
new Callable() { new Callable() {
@Override @Override
public Object call() throws Exception { public Object call() throws Exception {

View file

@ -50,7 +50,7 @@ public class WaitForPlayers extends SwingWorker<DefaultListModel<String>,Default
if (line.startsWith("MESSAGE")) { if (line.startsWith("MESSAGE")) {
buffer.clear(); buffer.clear();
System.out.println("Mi arriva questo dal server " + line); System.out.println("Mi arriva questo dal notificationServer " + line);
Message msg = Message.toMessage(line); Message msg = Message.toMessage(line);
System.out.println(msg.message); System.out.println(msg.message);

View file

@ -9,7 +9,6 @@ import javax.swing.*;
import java.io.IOException; import java.io.IOException;
import java.net.DatagramPacket; import java.net.DatagramPacket;
import java.net.InetAddress; import java.net.InetAddress;
import java.net.MulticastSocket;
import java.net.UnknownHostException; import java.net.UnknownHostException;
/** /**
@ -69,7 +68,7 @@ public class WaitForScore extends SwingWorker<Void,Void> {
e.printStackTrace(); e.printStackTrace();
} }
App.game.multicastSocket.close(); App.game.multicastSocket.close();
App.game.isStarted=false; App.game.gameIsStarted =false;
try { try {
this.callback.execute(); this.callback.execute();
} catch (Exception e) { } catch (Exception e) {

View file

@ -11,7 +11,6 @@ public class Config {
public static String GameServerURI = "localhost"; public static String GameServerURI = "localhost";
public static Integer GameServerPort = 10000; public static Integer GameServerPort = 10000;
public static String WordsReceiverServerURI = "localhost"; public static String WordsReceiverServerURI = "localhost";
public static Integer WordsReceiverServerPort = 10001; public static Integer WordsReceiverServerPort = 10001;

View file

@ -1,9 +1,11 @@
package models; package models;
import java.io.Serializable;
/** /**
* Created by loke on 18/06/2017. * Created by loke on 18/06/2017.
*/ */
public class User { public class User implements Serializable{
public String userName; public String userName;
public String password; public String password;

3
META-INF/MANIFEST.MF Normal file
View file

@ -0,0 +1,3 @@
Manifest-Version: 1.0
Main-Class: com.texttwist.server.Main

View file

@ -11,5 +11,7 @@
<orderEntry type="library" name="com.github.cliftonlabs:json-simple:2.1.2" level="project" /> <orderEntry type="library" name="com.github.cliftonlabs:json-simple:2.1.2" level="project" />
<orderEntry type="module" module-name="Commons" /> <orderEntry type="module" module-name="Commons" />
<orderEntry type="module" module-name="Client" /> <orderEntry type="module" module-name="Client" />
<orderEntry type="library" name="jedis-2.1.0-sources" level="application" />
<orderEntry type="library" name="redis.clients:jedis:2.9.0" level="project" />
</component> </component>
</module> </module>

View file

@ -5,6 +5,9 @@ import com.texttwist.server.components.GameServer;
import com.texttwist.server.components.NotificationServer; import com.texttwist.server.components.NotificationServer;
import constants.Config; import constants.Config;
import interfaces.INotificationServer; import interfaces.INotificationServer;
import redis.clients.jedis.Jedis;
import redis.clients.jedis.JedisPool;
import redis.clients.jedis.JedisPoolConfig;
import utilities.Logger; import utilities.Logger;
import java.io.File; import java.io.File;
@ -19,9 +22,11 @@ import java.rmi.server.UnicastRemoteObject;
*/ */
public class Server { public class Server {
public static NotificationServer notificationServer; public static NotificationServer notificationServer;
public static JedisPool jedisPool;
public Server() throws IOException { public Server() throws IOException {
//Start services //Start services
Logger logger = new Logger(new File("./server.log"), "Server"); Logger logger = new Logger(new File("./notificationServer.log"), "Server");
Logger.write("Server starting ..."); Logger.write("Server starting ...");
try { try {
@ -30,6 +35,9 @@ public class Server {
Registry authRegistry = LocateRegistry.createRegistry(auth.serverPort); Registry authRegistry = LocateRegistry.createRegistry(auth.serverPort);
authRegistry.bind("auth", auth); authRegistry.bind("auth", auth);
//Connecting to Redis server on localhost
jedisPool = new JedisPool(new JedisPoolConfig(), "localhost");
GameServer gameServer = new GameServer(Config.GameServerPort); GameServer gameServer = new GameServer(Config.GameServerPort);
new Thread(gameServer).start(); new Thread(gameServer).start();

View file

@ -1,11 +1,9 @@
package com.texttwist.server.components; package com.texttwist.server.components;
import models.User; import models.User;
import java.io.Serializable;
import java.util.*;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
/** /**
* Created by loke on 18/06/2017. * Created by loke on 18/06/2017.
@ -28,11 +26,18 @@ public class AccountsManager {
users.add(new User("c","c",0)); users.add(new User("c","c",0));
users.add(new User("d","d",0)); users.add(new User("d","d",0));
List<Serializable> l = JedisService.get("users");
for(int i=0; i<l.size(); i++) {
users.add((User) l.get(i));
}
} }
public boolean register(String userName, String password) { public boolean register(String userName, String password) {
if(!exists(userName)){ if(!exists(userName)){
return users.add(new User(userName, password,0)); User newUser = new User(userName, password,0);
Boolean res = users.add(newUser);
JedisService.add("users", newUser);
return res;
} else { } else {
return false; return false;
} }
@ -70,7 +75,6 @@ public class AccountsManager {
} }
} }
return null; return null;
} }
public int size(){ public int size(){

View file

@ -59,7 +59,7 @@ public class GameServer implements Runnable{
datagramChannel = DatagramChannel.open(); datagramChannel = DatagramChannel.open();
datagramChannel.configureBlocking(true); datagramChannel.configureBlocking(true);
datagramChannel.connect(address); datagramChannel.connect(address);
Logger.write("GamePage Service is running at "+this.serverPort+" port..."); Logger.write("Game Service is running at "+this.serverPort+" port...");
wordsReceiver = new ReceiveWords(datagramChannel, bufferWords, bufferMessages, client); wordsReceiver = new ReceiveWords(datagramChannel, bufferWords, bufferMessages, client);
threadPool.submit(wordsReceiver); threadPool.submit(wordsReceiver);

View file

@ -0,0 +1,96 @@
package com.texttwist.server.components;
import models.User;
import redis.clients.jedis.Jedis;
import java.io.*;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.Base64;
import java.util.List;
import static com.texttwist.server.Server.jedisPool;
/**
* Created by loke on 11/07/2017.
*/
public class JedisService {
public JedisService(){
}
/** Read the object from Base64 string. */
public static Object fromString(String s) throws IOException, ClassNotFoundException {
byte [] data = Base64.getDecoder().decode(s);
ObjectInputStream ois = new ObjectInputStream(new ByteArrayInputStream(data));
Object o = ois.readObject();
ois.close();
return o;
}
/** Write the object to a Base64 string. */
public static String toString(Serializable o) throws IOException {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ObjectOutputStream oos = new ObjectOutputStream(baos);
oos.writeObject(o);
oos.close();
return Base64.getEncoder().encodeToString(baos.toByteArray());
}
public static Void add(String key, Serializable o){
Jedis jedis = null;
try {
jedis = jedisPool.getResource();
jedis.append(key, JedisService.toString(o)+"\n");
} catch (IOException e) {
e.printStackTrace();
} finally {
if (jedis != null) {
jedis.close();
}
}
return null;
}
public static List<Serializable> get(String key){
Jedis jedis = null;
List<Serializable> l = new ArrayList<>();
try {
System.out.println("USER ss");
jedis = jedisPool.getResource();
String usersString = jedis.get(key);
System.out.println("USER "+usersString);
if(usersString!=null) {
String[] lines = usersString.split("\n");
for (int i = 0; i < lines.length; i++) {
l.add((User) JedisService.fromString(lines[i]));
}
}
} catch (IOException e) {
e.printStackTrace();
} catch (ClassNotFoundException e) {
e.printStackTrace();
} finally {
if (jedis != null) {
jedis.close();
}
}
return l;
}
public static Void removeAll(String key){
Jedis jedis = null;
try {
jedis = jedisPool.getResource();
jedis.del(key);
} finally {
if (jedis != null) {
jedis.close();
}
}
return null;
}
}

View file

@ -1,6 +1,7 @@
package com.texttwist.server.tasks; package com.texttwist.server.tasks;
import com.texttwist.server.components.AccountsManager; import com.texttwist.server.components.AccountsManager;
import com.texttwist.server.components.JedisService;
import models.User; import models.User;
import javax.swing.*; import javax.swing.*;
@ -26,8 +27,10 @@ public class ComputeHighscores implements Callable<DefaultListModel<String>> {
return o2.score.compareTo(o1.score); return o2.score.compareTo(o1.score);
} }
}); });
JedisService.removeAll("users");
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);
JedisService.add("users",AccountsManager.getInstance().users.get(i));
} }
return l; return l;
} }

View file

@ -1,16 +1,20 @@
package com.texttwist.server.tasks; package com.texttwist.server.tasks;
import com.texttwist.client.App; import com.texttwist.client.App;
import com.texttwist.server.components.AccountsManager; import com.texttwist.server.components.AccountsManager;
import com.texttwist.server.components.JedisService;
import com.texttwist.server.models.Dictionary; import com.texttwist.server.models.Dictionary;
import com.texttwist.server.models.Match; import com.texttwist.server.models.Match;
import constants.Config; import constants.Config;
import models.Message; import models.Message;
import models.User; import models.User;
import redis.clients.jedis.Jedis;
import javax.swing.*; import javax.swing.*;
import java.io.Serializable;
import java.net.DatagramPacket; import java.net.DatagramPacket;
import java.net.InetAddress; import java.net.InetAddress;
import java.net.MulticastSocket; import java.net.MulticastSocket;
import java.util.List;
import java.util.concurrent.Callable; import java.util.concurrent.Callable;
import static com.texttwist.server.components.GameServer.activeMatches; import static com.texttwist.server.components.GameServer.activeMatches;

View file

@ -8698,3 +8698,288 @@ LOGGER (Client1): Tue Jul 11 11:13:13 CEST 2017 - Invoked invitation with userna
LOGGER (Client1): Tue Jul 11 11:13:13 CEST 2017 - L'utente è sloggato LOGGER (Client1): Tue Jul 11 11:13:13 CEST 2017 - L'utente è sloggato
LOGGER (Client1): Tue Jul 11 11:13:13 CEST 2017 - Invoked invitation with username=d|[b] LOGGER (Client1): Tue Jul 11 11:13:13 CEST 2017 - Invoked invitation with username=d|[b]
LOGGER (Client1): Tue Jul 11 11:13:13 CEST 2017 - L'utente è sloggato LOGGER (Client1): Tue Jul 11 11:13:13 CEST 2017 - L'utente è sloggato
LOGGER (Client1): Tue Jul 11 11:57:27 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 11:57:29 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 11:57:38 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Tue Jul 11 11:57:38 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Tue Jul 11 11:57:38 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Tue Jul 11 11:57:38 CEST 2017 - L'utente è sloggato
LOGGER (Client1): Tue Jul 11 11:57:55 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 11:57:59 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Tue Jul 11 11:57:59 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Tue Jul 11 11:57:59 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Tue Jul 11 11:57:59 CEST 2017 - L'utente è sloggato
LOGGER (Client1): Tue Jul 11 11:57:59 CEST 2017 - Invoked invitation with username=c|[a]
LOGGER (Client1): Tue Jul 11 11:57:59 CEST 2017 - L'utente è sloggato
LOGGER (Client1): Tue Jul 11 11:58:05 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Tue Jul 11 11:58:05 CEST 2017 - b ti ha sfidato!
LOGGER (Client1): Tue Jul 11 11:58:05 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Tue Jul 11 11:58:05 CEST 2017 - L'utente è sloggato
LOGGER (Client1): Tue Jul 11 11:58:05 CEST 2017 - Invoked invitation with username=b|[a]
LOGGER (Client1): Tue Jul 11 11:58:05 CEST 2017 - L'utente è sloggato
LOGGER (Client1): Tue Jul 11 11:58:34 CEST 2017 - Invoked invitation with username=c|[b]
LOGGER (Client1): Tue Jul 11 11:58:34 CEST 2017 - L'utente è sloggato
LOGGER (Client1): Tue Jul 11 11:58:34 CEST 2017 - Invoked invitation with username=c|[b]
LOGGER (Client1): Tue Jul 11 11:58:34 CEST 2017 - c ti ha sfidato!
LOGGER (Client1): Tue Jul 11 11:58:35 CEST 2017 - Invoked invitation with username=c|[b]
LOGGER (Client1): Tue Jul 11 11:58:35 CEST 2017 - L'utente è sloggato
LOGGER (Client1): Tue Jul 11 12:02:16 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 12:51:07 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 12:51:57 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 12:52:48 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 12:54:13 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 13:00:07 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 13:23:38 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 13:24:01 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 13:24:41 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 13:26:22 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 13:26:32 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 13:26:41 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 13:26:51 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 13:34:34 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 14:26:18 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 14:26:40 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 14:27:35 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 14:28:39 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 14:29:02 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 14:29:34 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 14:35:11 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 14:35:44 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 14:36:12 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 14:36:23 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 14:36:41 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 14:38:45 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 14:40:08 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 14:40:21 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 14:40:35 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 14:49:56 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 14:52:51 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 14:54:02 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 14:55:19 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 14:56:13 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 14:56:36 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 14:57:06 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 15:09:30 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 15:41:30 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 15:41:38 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 15:41:43 CEST 2017 - Invoked invitation with username =b|[a]
LOGGER (Client1): Tue Jul 11 15:41:43 CEST 2017 - b send a invitation!
LOGGER (Client1): Tue Jul 11 15:41:43 CEST 2017 - Invoked invitation with username =b|[a]
LOGGER (Client1): Tue Jul 11 15:41:43 CEST 2017 - User b is slogged
LOGGER (Client1): Tue Jul 11 15:42:04 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 15:42:08 CEST 2017 - Invoked invitation with username =c|[a]
LOGGER (Client1): Tue Jul 11 15:42:08 CEST 2017 - c send a invitation!
LOGGER (Client1): Tue Jul 11 15:42:08 CEST 2017 - Invoked invitation with username =c|[a]
LOGGER (Client1): Tue Jul 11 15:42:08 CEST 2017 - User c is slogged
LOGGER (Client1): Tue Jul 11 15:52:19 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 16:14:45 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 16:15:09 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 16:16:18 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 16:22:49 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 16:26:12 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 16:31:46 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 16:32:43 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 16:33:55 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 16:34:23 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 16:48:17 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 16:48:45 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 16:50:40 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 17:51:44 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 17:51:57 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 17:52:04 CEST 2017 - Invoked invitation with username =asd|[a]
LOGGER (Client1): Tue Jul 11 17:52:04 CEST 2017 - asd send a invitation!
LOGGER (Client1): Tue Jul 11 17:52:04 CEST 2017 - Invoked invitation with username =asd|[a]
LOGGER (Client1): Tue Jul 11 17:52:04 CEST 2017 - User asd is slogged
LOGGER (Client1): Tue Jul 11 17:52:36 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 17:53:07 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 17:54:43 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 17:55:22 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 17:55:45 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 17:59:38 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:00:28 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:01:34 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:02:46 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:03:34 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:04:43 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:05:11 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:06:00 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:06:57 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:07:49 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:08:18 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:08:28 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:08:36 CEST 2017 - Invoked invitation with username =b|[aa]
LOGGER (Client1): Tue Jul 11 18:08:36 CEST 2017 - b send a invitation!
LOGGER (Client1): Tue Jul 11 18:08:36 CEST 2017 - Invoked invitation with username =b|[aa]
LOGGER (Client1): Tue Jul 11 18:08:36 CEST 2017 - b send a invitation!
LOGGER (Client1): Tue Jul 11 18:08:36 CEST 2017 - Invoked invitation with username =b|[aa]
LOGGER (Client1): Tue Jul 11 18:08:36 CEST 2017 - User b is slogged
LOGGER (Client1): Tue Jul 11 18:09:08 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:10:18 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:10:28 CEST 2017 - Invoked invitation with username =b|[aa]
LOGGER (Client1): Tue Jul 11 18:10:28 CEST 2017 - b send a invitation!
LOGGER (Client1): Tue Jul 11 18:10:28 CEST 2017 - Invoked invitation with username =b|[aa]
LOGGER (Client1): Tue Jul 11 18:10:28 CEST 2017 - User b is slogged
LOGGER (Client1): Tue Jul 11 18:10:53 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:11:07 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:11:29 CEST 2017 - Invoked invitation with username =aa|[gg]
LOGGER (Client1): Tue Jul 11 18:11:29 CEST 2017 - User aa is slogged
LOGGER (Client1): Tue Jul 11 18:11:29 CEST 2017 - Invoked invitation with username =aa|[gg]
LOGGER (Client1): Tue Jul 11 18:11:29 CEST 2017 - aa send a invitation!
LOGGER (Client1): Tue Jul 11 18:11:29 CEST 2017 - Invoked invitation with username =aa|[gg]
LOGGER (Client1): Tue Jul 11 18:11:29 CEST 2017 - aa send a invitation!
LOGGER (Client1): Tue Jul 11 18:11:50 CEST 2017 - Invoked invitation with username =gg|[aa]
LOGGER (Client1): Tue Jul 11 18:11:51 CEST 2017 - gg send a invitation!
LOGGER (Client1): Tue Jul 11 18:11:51 CEST 2017 - Invoked invitation with username =gg|[aa]
LOGGER (Client1): Tue Jul 11 18:11:51 CEST 2017 - User gg is slogged
LOGGER (Client1): Tue Jul 11 18:11:51 CEST 2017 - Invoked invitation with username =gg|[aa]
LOGGER (Client1): Tue Jul 11 18:11:51 CEST 2017 - User gg is slogged
LOGGER (Client1): Tue Jul 11 18:12:19 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:16:49 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:17:07 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:18:51 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:19:15 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:20:01 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:20:02 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:20:47 CEST 2017 - Invoked invitation with username =aaa|[vvv]
LOGGER (Client1): Tue Jul 11 18:20:47 CEST 2017 - User aaa is slogged
LOGGER (Client1): Tue Jul 11 18:20:47 CEST 2017 - Invoked invitation with username =aaa|[vvv]
LOGGER (Client1): Tue Jul 11 18:20:47 CEST 2017 - aaa send a invitation!
LOGGER (Client1): Tue Jul 11 18:21:33 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:21:47 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:22:51 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:22:52 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:23:13 CEST 2017 - Invoked invitation with username =ss|[aa]
LOGGER (Client1): Tue Jul 11 18:23:13 CEST 2017 - ss send a invitation!
LOGGER (Client1): Tue Jul 11 18:23:13 CEST 2017 - Invoked invitation with username =ss|[aa]
LOGGER (Client1): Tue Jul 11 18:23:13 CEST 2017 - User ss is slogged
LOGGER (Client1): Tue Jul 11 18:24:15 CEST 2017 - Invoked invitation with username =ss|[aa]
LOGGER (Client1): Tue Jul 11 18:24:15 CEST 2017 - ss send a invitation!
LOGGER (Client1): Tue Jul 11 18:24:15 CEST 2017 - Invoked invitation with username =ss|[aa]
LOGGER (Client1): Tue Jul 11 18:24:15 CEST 2017 - User ss is slogged
LOGGER (Client1): Tue Jul 11 18:24:43 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:27:29 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:27:31 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:27:52 CEST 2017 - Invoked invitation with username =dd|[aa]
LOGGER (Client1): Tue Jul 11 18:27:52 CEST 2017 - dd send a invitation!
LOGGER (Client1): Tue Jul 11 18:27:52 CEST 2017 - Invoked invitation with username =dd|[aa]
LOGGER (Client1): Tue Jul 11 18:27:52 CEST 2017 - User dd is slogged
LOGGER (Client1): Tue Jul 11 18:29:24 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:29:36 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:29:48 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 18:29:48 CEST 2017 - bb send a invitation!
LOGGER (Client1): Tue Jul 11 18:29:48 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 18:29:48 CEST 2017 - User bb is slogged
LOGGER (Client1): Tue Jul 11 18:30:17 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:31:03 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:31:17 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:31:22 CEST 2017 - Invoked invitation with username =b|[aa]
LOGGER (Client1): Tue Jul 11 18:31:22 CEST 2017 - b send a invitation!
LOGGER (Client1): Tue Jul 11 18:31:22 CEST 2017 - Invoked invitation with username =b|[aa]
LOGGER (Client1): Tue Jul 11 18:31:22 CEST 2017 - User b is slogged
LOGGER (Client1): Tue Jul 11 18:32:17 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:32:24 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:32:29 CEST 2017 - Invoked invitation with username =b|[aa]
LOGGER (Client1): Tue Jul 11 18:32:29 CEST 2017 - b send a invitation!
LOGGER (Client1): Tue Jul 11 18:32:29 CEST 2017 - Invoked invitation with username =b|[aa]
LOGGER (Client1): Tue Jul 11 18:32:29 CEST 2017 - User b is slogged
LOGGER (Client1): Tue Jul 11 18:33:03 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:33:59 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:34:00 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:34:13 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 18:34:13 CEST 2017 - bb send a invitation!
LOGGER (Client1): Tue Jul 11 18:34:13 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 18:34:13 CEST 2017 - User bb is slogged
LOGGER (Client1): Tue Jul 11 18:35:19 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:37:11 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:38:12 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:39:00 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:39:26 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:39:57 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:40:24 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:40:40 CEST 2017 - Invoked invitation with username =aa|[ss]
LOGGER (Client1): Tue Jul 11 18:40:40 CEST 2017 - User aa is slogged
LOGGER (Client1): Tue Jul 11 18:40:40 CEST 2017 - Invoked invitation with username =aa|[ss]
LOGGER (Client1): Tue Jul 11 18:40:40 CEST 2017 - aa send a invitation!
LOGGER (Client1): Tue Jul 11 18:48:26 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:50:24 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:50:44 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:50:54 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:51:08 CEST 2017 - Invoked invitation with username =aa|[ss]
LOGGER (Client1): Tue Jul 11 18:51:08 CEST 2017 - aa send a invitation!
LOGGER (Client1): Tue Jul 11 18:51:08 CEST 2017 - Invoked invitation with username =aa|[ss]
LOGGER (Client1): Tue Jul 11 18:51:08 CEST 2017 - User aa is slogged
LOGGER (Client1): Tue Jul 11 18:52:54 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:53:09 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:53:25 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:53:49 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 18:53:49 CEST 2017 - bb send a invitation!
LOGGER (Client1): Tue Jul 11 18:53:49 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 18:53:49 CEST 2017 - User bb is slogged
LOGGER (Client1): Tue Jul 11 18:53:49 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 18:53:49 CEST 2017 - User bb is slogged
LOGGER (Client1): Tue Jul 11 18:53:49 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 18:53:49 CEST 2017 - User bb is slogged
LOGGER (Client1): Tue Jul 11 18:53:49 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 18:53:49 CEST 2017 - User bb is slogged
LOGGER (Client1): Tue Jul 11 18:54:21 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 18:54:21 CEST 2017 - bb send a invitation!
LOGGER (Client1): Tue Jul 11 18:54:21 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 18:54:21 CEST 2017 - User bb is slogged
LOGGER (Client1): Tue Jul 11 18:54:22 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 18:54:22 CEST 2017 - User bb is slogged
LOGGER (Client1): Tue Jul 11 18:54:22 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 18:54:22 CEST 2017 - User bb is slogged
LOGGER (Client1): Tue Jul 11 18:54:22 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 18:54:22 CEST 2017 - User bb is slogged
LOGGER (Client1): Tue Jul 11 18:55:13 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:57:46 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:57:47 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:58:11 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 18:58:11 CEST 2017 - bb send a invitation!
LOGGER (Client1): Tue Jul 11 18:58:11 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 18:58:11 CEST 2017 - bb send a invitation!
LOGGER (Client1): Tue Jul 11 18:58:11 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 18:58:11 CEST 2017 - User bb is slogged
LOGGER (Client1): Tue Jul 11 18:58:11 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 18:58:11 CEST 2017 - User bb is slogged
LOGGER (Client1): Tue Jul 11 18:58:34 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:58:36 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 18:58:46 CEST 2017 - Invoked invitation with username =aa|[bb]
LOGGER (Client1): Tue Jul 11 18:58:46 CEST 2017 - User aa is slogged
LOGGER (Client1): Tue Jul 11 18:58:46 CEST 2017 - Invoked invitation with username =aa|[bb]
LOGGER (Client1): Tue Jul 11 18:58:46 CEST 2017 - aa send a invitation!
LOGGER (Client1): Tue Jul 11 19:04:24 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 19:04:27 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 19:04:48 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 19:04:48 CEST 2017 - bb send a invitation!
LOGGER (Client1): Tue Jul 11 19:04:48 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 19:04:48 CEST 2017 - User bb is slogged
LOGGER (Client1): Tue Jul 11 19:05:20 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 19:07:01 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 19:07:14 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 19:07:28 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 19:07:28 CEST 2017 - bb send a invitation!
LOGGER (Client1): Tue Jul 11 19:07:28 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 19:07:28 CEST 2017 - User bb is slogged
LOGGER (Client1): Tue Jul 11 19:08:19 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 19:09:04 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 19:09:15 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 19:09:39 CEST 2017 - Invoked invitation with username =aa|[ss]
LOGGER (Client1): Tue Jul 11 19:09:39 CEST 2017 - aa send a invitation!
LOGGER (Client1): Tue Jul 11 19:09:39 CEST 2017 - Invoked invitation with username =aa|[ss]
LOGGER (Client1): Tue Jul 11 19:09:39 CEST 2017 - User aa is slogged
LOGGER (Client1): Tue Jul 11 19:10:12 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 19:17:31 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 19:17:33 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 19:17:55 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 19:17:55 CEST 2017 - bb send a invitation!
LOGGER (Client1): Tue Jul 11 19:17:55 CEST 2017 - Invoked invitation with username =bb|[aa]
LOGGER (Client1): Tue Jul 11 19:17:55 CEST 2017 - User bb is slogged
LOGGER (Client1): Tue Jul 11 19:18:27 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 19:18:37 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 19:18:43 CEST 2017 - Invoked invitation with username =bb|[a]
LOGGER (Client1): Tue Jul 11 19:18:43 CEST 2017 - bb send a invitation!
LOGGER (Client1): Tue Jul 11 19:18:43 CEST 2017 - Invoked invitation with username =bb|[a]
LOGGER (Client1): Tue Jul 11 19:18:43 CEST 2017 - User bb is slogged
LOGGER (Client1): Tue Jul 11 19:19:06 CEST 2017 - Client starting ...
LOGGER (Client1): Tue Jul 11 19:19:20 CEST 2017 - Client starting ...

653
notificationServer.log Normal file
View file

@ -0,0 +1,653 @@
LOGGER (Server): Tue Jul 11 15:38:01 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 15:38:01 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 15:40:51 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 15:40:51 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 15:40:51 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 15:40:51 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 15:41:32 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 15:41:32 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 15:41:39 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Tue Jul 11 15:41:39 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 15:42:01 CEST 2017 - Invoked logout with username=b AND token=ubtnmg8f8bi50ies0da6krkdkt
LOGGER (Server): Tue Jul 11 15:42:01 CEST 2017 - Logout successfull
LOGGER (Server): Tue Jul 11 15:42:01 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Tue Jul 11 15:42:05 CEST 2017 - Invoked login with username=c AND password=c
LOGGER (Server): Tue Jul 11 15:42:05 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 15:42:28 CEST 2017 - Invoked logout with username=c AND token=pbgdsjma44g7rrjb76rpto023v
LOGGER (Server): Tue Jul 11 15:42:28 CEST 2017 - Logout successfull
LOGGER (Server): Tue Jul 11 15:42:28 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Tue Jul 11 15:52:17 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 15:52:17 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 15:52:17 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 15:52:17 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 15:52:21 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 15:52:21 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 15:52:22 CEST 2017 - Invoked logout with username=a AND token=gb2j7vfefpetime0abu0kflf5e
LOGGER (Server): Tue Jul 11 15:52:22 CEST 2017 - Logout successfull
LOGGER (Server): Tue Jul 11 15:52:22 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Tue Jul 11 15:52:23 CEST 2017 - Invoked login with username= AND password=
LOGGER (Server): Tue Jul 11 15:52:23 CEST 2017 - Login unsuccessfull
LOGGER (Server): Tue Jul 11 15:52:26 CEST 2017 - Invoked register with username=asd AND password=asd
LOGGER (Server): Tue Jul 11 15:52:26 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 16:14:50 CEST 2017 - Invoked register with username=ddd AND password=dd
LOGGER (Server): Tue Jul 11 16:14:50 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 16:15:03 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 16:15:03 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 16:15:03 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 16:15:03 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 16:15:13 CEST 2017 - Invoked register with username=as AND password=as
LOGGER (Server): Tue Jul 11 16:15:13 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 16:16:16 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 16:16:16 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 16:16:16 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 16:16:16 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 16:16:22 CEST 2017 - Invoked register with username=ca AND password=ca
LOGGER (Server): Tue Jul 11 16:16:22 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 16:22:44 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 16:22:45 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 16:22:45 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 16:22:45 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 16:22:52 CEST 2017 - Invoked register with username=v AND password=v
LOGGER (Server): Tue Jul 11 16:22:52 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 16:23:02 CEST 2017 - Invoked register with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 16:23:02 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 16:26:10 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 16:26:10 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 16:26:10 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 16:26:10 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 16:26:17 CEST 2017 - Invoked register with username=asd AND password=asd
LOGGER (Server): Tue Jul 11 16:26:18 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 16:26:25 CEST 2017 - Invoked register with username=ddd AND password=ddd
LOGGER (Server): Tue Jul 11 16:26:25 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 16:31:42 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 16:31:43 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 16:31:43 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 16:31:43 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 16:31:54 CEST 2017 - Invoked register with username=fff AND password=fff
LOGGER (Server): Tue Jul 11 16:32:42 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 16:32:42 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 16:32:42 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 16:32:42 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 16:32:50 CEST 2017 - Invoked register with username=aaa AND password=aaa
LOGGER (Server): Tue Jul 11 16:33:49 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 16:33:49 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 16:33:49 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 16:33:49 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 16:34:00 CEST 2017 - Invoked register with username=aq AND password=aq
LOGGER (Server): Tue Jul 11 16:34:00 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 16:34:06 CEST 2017 - Invoked login with username=aq AND password=aq
LOGGER (Server): Tue Jul 11 16:34:06 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 16:34:19 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 16:34:19 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 16:34:19 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 16:34:19 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 16:34:25 CEST 2017 - Invoked login with username=aq AND password=aq
LOGGER (Server): Tue Jul 11 16:34:25 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 16:48:13 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 16:48:13 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 16:48:14 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 16:48:14 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 16:48:22 CEST 2017 - Invoked register with username=qqq AND password=qqq
LOGGER (Server): Tue Jul 11 16:48:22 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 16:48:24 CEST 2017 - Invoked login with username=qqq AND password=qqq
LOGGER (Server): Tue Jul 11 16:48:24 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 16:48:36 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 16:48:36 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 16:48:36 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 16:48:36 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 16:48:48 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 16:48:48 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 16:50:31 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 16:50:31 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 16:50:31 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 16:50:31 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 16:50:43 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 16:50:43 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 17:51:38 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 17:51:38 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 17:51:38 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 17:51:38 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 17:51:52 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 17:51:52 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 17:52:00 CEST 2017 - Invoked login with username=asd AND password=asd
LOGGER (Server): Tue Jul 11 17:52:00 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 17:52:33 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 17:52:33 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 17:52:33 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 17:52:33 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 17:52:37 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 17:52:37 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 17:53:04 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 17:53:04 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 17:53:04 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 17:53:04 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 17:53:09 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 17:53:09 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 17:54:39 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 17:54:39 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 17:54:39 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 17:54:39 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 17:54:50 CEST 2017 - Invoked login with username=asd AND password=asd
LOGGER (Server): Tue Jul 11 17:54:50 CEST 2017 - Login unsuccessfull
LOGGER (Server): Tue Jul 11 17:54:56 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 17:54:56 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 17:55:19 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 17:55:19 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 17:55:19 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 17:55:19 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 17:55:28 CEST 2017 - Invoked register with username=asd AND password=asd
LOGGER (Server): Tue Jul 11 17:55:28 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 17:55:31 CEST 2017 - Invoked login with username=asd AND password=asd
LOGGER (Server): Tue Jul 11 17:55:31 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 17:55:42 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 17:55:43 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 17:55:43 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 17:55:43 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 17:55:48 CEST 2017 - Invoked login with username=asd AND password=asd
LOGGER (Server): Tue Jul 11 17:55:48 CEST 2017 - Login unsuccessfull
LOGGER (Server): Tue Jul 11 17:55:51 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 17:55:51 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 17:59:36 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 17:59:36 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 17:59:36 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 17:59:36 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 17:59:40 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 17:59:40 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:00:25 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:00:25 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:00:25 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:00:25 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:00:29 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:00:29 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:01:32 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:01:33 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:01:33 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:01:33 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:01:36 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:01:36 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:02:41 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:02:42 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:02:42 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:02:42 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:02:47 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:03:32 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:03:32 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:03:33 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:03:33 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:03:36 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:04:41 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:04:41 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:04:41 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:04:41 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:04:44 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:05:08 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:05:08 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:05:08 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:05:08 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:05:13 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:05:58 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:05:58 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:05:58 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:05:58 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:06:02 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:06:54 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:06:54 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:06:54 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:06:54 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:06:59 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:07:47 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:07:47 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:07:48 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:07:48 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:07:52 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:07:52 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:07:59 CEST 2017 - Invoked logout with username=a AND token=2li97sgbdbqiss2sp6691v2b2p
LOGGER (Server): Tue Jul 11 18:07:59 CEST 2017 - Logout successfull
LOGGER (Server): Tue Jul 11 18:07:59 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Tue Jul 11 18:08:02 CEST 2017 - Invoked register with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:08:02 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 18:08:05 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:08:05 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:08:16 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:08:16 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:08:16 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:08:16 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:08:20 CEST 2017 - Invoked login with username=aa AND password=
LOGGER (Server): Tue Jul 11 18:08:20 CEST 2017 - Login unsuccessfull
LOGGER (Server): Tue Jul 11 18:08:22 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:08:22 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:08:31 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Tue Jul 11 18:08:31 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:09:05 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:09:05 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:09:05 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:09:05 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:10:12 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:10:12 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:10:21 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Tue Jul 11 18:10:21 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:10:50 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:10:51 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:10:51 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:10:51 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:10:55 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:10:55 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:11:00 CEST 2017 - Invoked logout with username=a AND token=cfonm1701npspdjpdpvuh0837m
LOGGER (Server): Tue Jul 11 18:11:00 CEST 2017 - Logout successfull
LOGGER (Server): Tue Jul 11 18:11:00 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Tue Jul 11 18:11:04 CEST 2017 - Invoked register with username=gg AND password=gg
LOGGER (Server): Tue Jul 11 18:11:04 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 18:11:10 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:11:10 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:11:20 CEST 2017 - Invoked login with username=bb AND password=bb
LOGGER (Server): Tue Jul 11 18:11:20 CEST 2017 - Login unsuccessfull
LOGGER (Server): Tue Jul 11 18:11:25 CEST 2017 - Invoked login with username=gg AND password=gg
LOGGER (Server): Tue Jul 11 18:11:25 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:12:17 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:12:17 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:12:17 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:12:17 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:12:22 CEST 2017 - Invoked login with username=gg AND password=gg
LOGGER (Server): Tue Jul 11 18:12:22 CEST 2017 - Login unsuccessfull
LOGGER (Server): Tue Jul 11 18:12:27 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:12:27 CEST 2017 - Login unsuccessfull
LOGGER (Server): Tue Jul 11 18:12:30 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:12:30 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:16:44 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:16:44 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:16:44 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:16:44 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:16:50 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:16:50 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:16:52 CEST 2017 - Invoked logout with username=a AND token=hf92t4034gq0n65lb8tj6kidof
LOGGER (Server): Tue Jul 11 18:16:52 CEST 2017 - Logout successfull
LOGGER (Server): Tue Jul 11 18:16:52 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Tue Jul 11 18:16:56 CEST 2017 - Invoked register with username=aaa AND password=aaa
LOGGER (Server): Tue Jul 11 18:16:56 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 18:16:59 CEST 2017 - Invoked login with username=aaa AND password=aaa
LOGGER (Server): Tue Jul 11 18:16:59 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:17:04 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:17:04 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:17:04 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:17:04 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:17:10 CEST 2017 - Invoked login with username=aaa AND password=
LOGGER (Server): Tue Jul 11 18:17:10 CEST 2017 - Login unsuccessfull
LOGGER (Server): Tue Jul 11 18:17:13 CEST 2017 - Invoked login with username=aaa AND password=aaa
LOGGER (Server): Tue Jul 11 18:17:13 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:17:23 CEST 2017 - Invoked logout with username=aaa AND token=nu0hqi7vpbojv8aqsehusmls7v
LOGGER (Server): Tue Jul 11 18:17:23 CEST 2017 - Logout successfull
LOGGER (Server): Tue Jul 11 18:17:23 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Tue Jul 11 18:17:28 CEST 2017 - Invoked register with username=vvv AND password=vvv
LOGGER (Server): Tue Jul 11 18:17:28 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 18:17:30 CEST 2017 - Invoked login with username=vvv AND password=vvv
LOGGER (Server): Tue Jul 11 18:17:30 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:18:10 CEST 2017 - Invoked logout with username=vvv AND token=du1su199tqds47mka3ug82bq8u
LOGGER (Server): Tue Jul 11 18:18:10 CEST 2017 - Logout successfull
LOGGER (Server): Tue Jul 11 18:18:10 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Tue Jul 11 18:18:13 CEST 2017 - Invoked login with username=vvv AND password=vvv
LOGGER (Server): Tue Jul 11 18:18:13 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:18:23 CEST 2017 - Invoked logout with username=vvv AND token=s862u9icp1u1s9jjc9psp0efta
LOGGER (Server): Tue Jul 11 18:18:23 CEST 2017 - Logout successfull
LOGGER (Server): Tue Jul 11 18:18:23 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Tue Jul 11 18:18:28 CEST 2017 - Invoked register with username=qq AND password=qq
LOGGER (Server): Tue Jul 11 18:18:28 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 18:18:35 CEST 2017 - Invoked login with username=qq AND password=qq
LOGGER (Server): Tue Jul 11 18:18:35 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:18:54 CEST 2017 - Invoked login with username=qq AND password=qq
LOGGER (Server): Tue Jul 11 18:18:54 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:19:13 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:19:13 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:19:13 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:19:13 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:19:17 CEST 2017 - Invoked login with username=qq AND password=qq
LOGGER (Server): Tue Jul 11 18:19:17 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:19:58 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:19:58 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:19:58 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:19:58 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:20:05 CEST 2017 - Invoked login with username=aaa AND password=aaa
LOGGER (Server): Tue Jul 11 18:20:21 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:20:28 CEST 2017 - Invoked login with username=vvv AND password=vvv
LOGGER (Server): Tue Jul 11 18:20:28 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:21:28 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:21:28 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:21:28 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:21:28 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:21:34 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:21:34 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:21:44 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:21:44 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:21:44 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:21:44 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:21:51 CEST 2017 - Invoked register with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:21:51 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 18:22:49 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:22:49 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:22:49 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:22:49 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:22:54 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:22:54 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:22:55 CEST 2017 - Invoked logout with username=a AND token=r63r7um5s30dfb5fr0qq87nnr9
LOGGER (Server): Tue Jul 11 18:22:55 CEST 2017 - Logout successfull
LOGGER (Server): Tue Jul 11 18:22:55 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Tue Jul 11 18:22:58 CEST 2017 - Invoked register with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:22:58 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 18:23:00 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:23:00 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:23:07 CEST 2017 - Invoked register with username=ss AND password=ss
LOGGER (Server): Tue Jul 11 18:23:07 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 18:23:10 CEST 2017 - Invoked login with username=ss AND password=ss
LOGGER (Server): Tue Jul 11 18:23:10 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:24:40 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:24:40 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:24:40 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:24:40 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:24:45 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:24:45 CEST 2017 - Login unsuccessfull
LOGGER (Server): Tue Jul 11 18:24:47 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:24:47 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:27:28 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:27:28 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:27:28 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:27:28 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:27:39 CEST 2017 - Invoked register with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:27:39 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 18:27:42 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:27:42 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:27:46 CEST 2017 - Invoked register with username=dd AND password=dd
LOGGER (Server): Tue Jul 11 18:27:46 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 18:27:49 CEST 2017 - Invoked login with username=dd AND password=dd
LOGGER (Server): Tue Jul 11 18:27:49 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:29:21 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:29:21 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:29:21 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:29:21 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:29:26 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:29:26 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:29:28 CEST 2017 - Invoked logout with username=a AND token=hnvo7cncj0toegi7p9nbh8d0am
LOGGER (Server): Tue Jul 11 18:29:28 CEST 2017 - Logout successfull
LOGGER (Server): Tue Jul 11 18:29:28 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Tue Jul 11 18:29:31 CEST 2017 - Invoked register with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:29:31 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 18:29:34 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:29:34 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:29:40 CEST 2017 - Invoked register with username=bb AND password=bb
LOGGER (Server): Tue Jul 11 18:29:40 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 18:29:43 CEST 2017 - Invoked login with username=bb AND password=bb
LOGGER (Server): Tue Jul 11 18:29:43 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:30:13 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:30:13 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:30:13 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:30:13 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:30:19 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:30:19 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:31:02 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:31:02 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:31:02 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:31:02 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:31:08 CEST 2017 - Invoked register with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:31:08 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 18:31:13 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:31:13 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:31:18 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Tue Jul 11 18:31:18 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:32:13 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:32:13 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:32:13 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:32:13 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:32:19 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:32:19 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:32:25 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Tue Jul 11 18:32:25 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:32:59 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:33:00 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:33:00 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:33:00 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:33:04 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:33:04 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:33:56 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:33:56 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:33:57 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:33:57 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:34:02 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:34:03 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:34:08 CEST 2017 - Invoked register with username=bb AND password=bb
LOGGER (Server): Tue Jul 11 18:34:08 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 18:34:10 CEST 2017 - Invoked login with username=bb AND password=bb
LOGGER (Server): Tue Jul 11 18:34:10 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:35:05 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:35:05 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:35:15 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:35:15 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:35:15 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:35:15 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:35:22 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:35:22 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:37:09 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:37:09 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:37:09 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:37:09 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:37:13 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:37:13 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:38:09 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:38:09 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:38:09 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:38:09 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:38:22 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:38:22 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:38:53 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:38:53 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:38:53 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:38:53 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:39:06 CEST 2017 - Invoked register with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:39:06 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 18:39:21 CEST 2017 - Invoked register with username=qq AND password=qq
LOGGER (Server): Tue Jul 11 18:39:21 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 18:39:24 CEST 2017 - Invoked login with username=qq AND password=qq
LOGGER (Server): Tue Jul 11 18:39:24 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:39:29 CEST 2017 - Invoked login with username=ss AND password=ss
LOGGER (Server): Tue Jul 11 18:39:29 CEST 2017 - Login unsuccessfull
LOGGER (Server): Tue Jul 11 18:39:35 CEST 2017 - Invoked register with username=ss AND password=ss
LOGGER (Server): Tue Jul 11 18:39:35 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 18:39:37 CEST 2017 - Invoked login with username=ss AND password=ss
LOGGER (Server): Tue Jul 11 18:39:37 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:39:55 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:39:55 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:39:55 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:39:55 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:40:00 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:40:00 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:40:28 CEST 2017 - Invoked login with username=ss AND password=ss
LOGGER (Server): Tue Jul 11 18:40:28 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:48:23 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:48:23 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:48:23 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:48:23 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:48:28 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:48:28 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:50:22 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:50:22 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:50:22 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:50:22 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:50:27 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:50:27 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:50:41 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:50:41 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:50:41 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:50:41 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:50:45 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:50:45 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:50:48 CEST 2017 - Invoked logout with username=a AND token=q278uvq6srbm00ufi8gk0ds93v
LOGGER (Server): Tue Jul 11 18:50:48 CEST 2017 - Logout successfull
LOGGER (Server): Tue Jul 11 18:50:48 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Tue Jul 11 18:50:50 CEST 2017 - Invoked register with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:50:50 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 18:50:57 CEST 2017 - Invoked register with username=ss AND password=ss
LOGGER (Server): Tue Jul 11 18:50:57 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 18:51:00 CEST 2017 - Invoked login with username=ss AND password=ss
LOGGER (Server): Tue Jul 11 18:51:00 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:51:05 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:51:05 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:52:52 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:52:52 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:52:52 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:52:52 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:52:56 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:53:07 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:53:07 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:53:07 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:53:07 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:53:10 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:53:10 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:53:14 CEST 2017 - Invoked logout with username=a AND token=keooh5rlk5les4c1lsgn8qedjj
LOGGER (Server): Tue Jul 11 18:53:14 CEST 2017 - Logout successfull
LOGGER (Server): Tue Jul 11 18:53:14 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Tue Jul 11 18:53:17 CEST 2017 - Invoked register with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:53:17 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 18:53:20 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:53:20 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:53:27 CEST 2017 - Invoked login with username=bb AND password=bb
LOGGER (Server): Tue Jul 11 18:53:27 CEST 2017 - Login unsuccessfull
LOGGER (Server): Tue Jul 11 18:53:32 CEST 2017 - Invoked login with username=bb AND password=bb
LOGGER (Server): Tue Jul 11 18:53:32 CEST 2017 - Login unsuccessfull
LOGGER (Server): Tue Jul 11 18:53:37 CEST 2017 - Invoked login with username=bb AND password=bb
LOGGER (Server): Tue Jul 11 18:53:37 CEST 2017 - Login unsuccessfull
LOGGER (Server): Tue Jul 11 18:53:41 CEST 2017 - Invoked register with username=bb AND password=bb
LOGGER (Server): Tue Jul 11 18:53:41 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 18:53:45 CEST 2017 - Invoked login with username=bb AND password=bb
LOGGER (Server): Tue Jul 11 18:53:45 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:54:57 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:54:57 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:54:58 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:54:58 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:55:14 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:55:14 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:55:47 CEST 2017 - Invoked logout with username=a AND token=li2qi15q6n92pqtmbj422qpgdg
LOGGER (Server): Tue Jul 11 18:55:47 CEST 2017 - Logout successfull
LOGGER (Server): Tue Jul 11 18:55:47 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Tue Jul 11 18:55:50 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:55:50 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:57:44 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:57:44 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:57:44 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:57:44 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:57:48 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 18:57:48 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:57:49 CEST 2017 - Invoked logout with username=a AND token=r5vr0tbtregjqtj5alnbl49hhi
LOGGER (Server): Tue Jul 11 18:57:49 CEST 2017 - Logout successfull
LOGGER (Server): Tue Jul 11 18:57:49 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Tue Jul 11 18:57:50 CEST 2017 - Invoked login with username= AND password=
LOGGER (Server): Tue Jul 11 18:57:50 CEST 2017 - Login unsuccessfull
LOGGER (Server): Tue Jul 11 18:57:53 CEST 2017 - Invoked register with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:57:53 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 18:57:56 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:57:56 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:58:03 CEST 2017 - Invoked register with username=bb AND password=bb
LOGGER (Server): Tue Jul 11 18:58:03 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 18:58:05 CEST 2017 - Invoked login with username=aa AND password=
LOGGER (Server): Tue Jul 11 18:58:05 CEST 2017 - Login unsuccessfull
LOGGER (Server): Tue Jul 11 18:58:08 CEST 2017 - Invoked login with username=bb AND password=bb
LOGGER (Server): Tue Jul 11 18:58:08 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:58:29 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 18:58:29 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 18:58:29 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 18:58:30 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 18:58:38 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 18:58:38 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 18:58:41 CEST 2017 - Invoked login with username=bb AND password=bb
LOGGER (Server): Tue Jul 11 18:58:41 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 19:04:22 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 19:04:22 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 19:04:22 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 19:04:22 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 19:04:31 CEST 2017 - Invoked register with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 19:04:31 CEST 2017 - Registration unsuccessfull
LOGGER (Server): Tue Jul 11 19:04:37 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 19:04:37 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 19:04:45 CEST 2017 - Invoked login with username=bb AND password=bb
LOGGER (Server): Tue Jul 11 19:04:45 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 19:05:17 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 19:05:18 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 19:05:18 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 19:05:18 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 19:05:21 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 19:05:21 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 19:06:59 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 19:06:59 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 19:06:59 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 19:06:59 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 19:07:02 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 19:07:02 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 19:07:03 CEST 2017 - Invoked logout with username=a AND token=tm15akq45p12pt8klbok16v232
LOGGER (Server): Tue Jul 11 19:07:03 CEST 2017 - Logout successfull
LOGGER (Server): Tue Jul 11 19:07:03 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Tue Jul 11 19:07:07 CEST 2017 - Invoked register with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 19:07:07 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 19:07:11 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 19:07:11 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 19:07:20 CEST 2017 - Invoked register with username=bb AND password=bb
LOGGER (Server): Tue Jul 11 19:07:20 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 19:07:23 CEST 2017 - Invoked login with username=bb AND password=bb
LOGGER (Server): Tue Jul 11 19:07:23 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 19:08:15 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 19:08:15 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 19:08:16 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 19:08:16 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 19:08:21 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 19:08:21 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 19:08:45 CEST 2017 - Invoked logout with username=a AND token=9ro2q30subp03h613vlpt8me6s
LOGGER (Server): Tue Jul 11 19:08:45 CEST 2017 - Logout successfull
LOGGER (Server): Tue Jul 11 19:08:45 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Tue Jul 11 19:08:48 CEST 2017 - Invoked register with username=ss AND password=ss
LOGGER (Server): Tue Jul 11 19:08:48 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 19:08:50 CEST 2017 - Invoked login with username=ss AND password=ss
LOGGER (Server): Tue Jul 11 19:08:50 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 19:09:01 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 19:09:02 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 19:09:02 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 19:09:02 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 19:09:07 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 19:09:07 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 19:09:19 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 19:09:19 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 19:09:29 CEST 2017 - Invoked logout with username=aa AND token=sk5kt2lsuea2dqepile4l8dsrd
LOGGER (Server): Tue Jul 11 19:09:29 CEST 2017 - Logout successfull
LOGGER (Server): Tue Jul 11 19:09:29 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Tue Jul 11 19:09:31 CEST 2017 - Invoked logout with username=aa AND token=cf97m4hsdpgg3buh3nf7japbej
LOGGER (Server): Tue Jul 11 19:09:31 CEST 2017 - Logout successfull (but something gone wrong)
LOGGER (Server): Tue Jul 11 19:09:34 CEST 2017 - Invoked login with username=ss AND password=ss
LOGGER (Server): Tue Jul 11 19:09:34 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 19:09:36 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 19:09:36 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 19:10:08 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 19:10:08 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 19:10:08 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 19:10:08 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 19:10:14 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 19:10:14 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 19:17:27 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 19:17:27 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 19:17:27 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 19:17:27 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 19:17:40 CEST 2017 - Invoked register with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 19:17:40 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 19:17:43 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 19:17:43 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 19:17:49 CEST 2017 - Invoked register with username=bb AND password=bb
LOGGER (Server): Tue Jul 11 19:17:49 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 19:17:52 CEST 2017 - Invoked login with username=bb AND password=bb
LOGGER (Server): Tue Jul 11 19:17:52 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 19:18:22 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 19:18:22 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 19:18:22 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 19:18:22 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 19:18:28 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 19:18:28 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 19:18:40 CEST 2017 - Invoked login with username=bb AND password=bb
LOGGER (Server): Tue Jul 11 19:18:40 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 19:19:17 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 19:19:18 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 19:19:18 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 19:19:18 CEST 2017 - Game Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 19:19:23 CEST 2017 - Invoked login with username=bb AND password=bb
LOGGER (Server): Tue Jul 11 19:19:23 CEST 2017 - Login successfull

View file

@ -9766,3 +9766,55 @@ LOGGER (Server): Tue Jul 11 11:07:54 CEST 2017 - Invoked register with username=
LOGGER (Server): Tue Jul 11 11:07:54 CEST 2017 - Registration successfull LOGGER (Server): Tue Jul 11 11:07:54 CEST 2017 - Registration successfull
LOGGER (Server): Tue Jul 11 11:07:56 CEST 2017 - Invoked login with username=aa AND password=aa LOGGER (Server): Tue Jul 11 11:07:56 CEST 2017 - Invoked login with username=aa AND password=aa
LOGGER (Server): Tue Jul 11 11:07:56 CEST 2017 - Login successfull LOGGER (Server): Tue Jul 11 11:07:56 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 11:57:25 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 11:57:25 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 11:57:25 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 11:57:25 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 11:57:31 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 11:57:31 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 11:57:34 CEST 2017 - Invoked login with username=b AND password=b
LOGGER (Server): Tue Jul 11 11:57:34 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 11:57:56 CEST 2017 - Invoked login with username=c AND password=c
LOGGER (Server): Tue Jul 11 11:57:56 CEST 2017 - Login successfull
LOGGER (Server): Tue Jul 11 12:07:46 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 12:07:46 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 12:11:20 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 12:11:20 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 12:11:56 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 12:11:56 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 12:27:02 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 12:27:02 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 12:27:16 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 12:27:16 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 12:27:16 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 12:27:16 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 12:28:27 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 12:28:27 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 12:28:27 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 12:28:27 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 12:28:49 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 12:28:49 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 12:28:49 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 12:28:49 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 12:28:59 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 12:28:59 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 12:28:59 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 12:28:59 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 12:30:15 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 12:30:15 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 12:30:15 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 12:30:15 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 12:32:22 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 12:32:22 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 12:32:22 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 12:32:22 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 12:32:36 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 12:32:36 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 12:32:36 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 12:32:36 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 15:09:26 CEST 2017 - Server starting ...
LOGGER (Server): Tue Jul 11 15:09:26 CEST 2017 - Auth Service running at 9999 port...
LOGGER (Server): Tue Jul 11 15:09:27 CEST 2017 - GamePage Service is running at 10000 port...
LOGGER (Server): Tue Jul 11 15:09:27 CEST 2017 - Server started
LOGGER (Server): Tue Jul 11 15:09:34 CEST 2017 - Invoked login with username=a AND password=a
LOGGER (Server): Tue Jul 11 15:09:34 CEST 2017 - Login successfull