up funzionante perfetto
This commit is contained in:
parent
cb63402b9f
commit
6b915932ae
20 changed files with 2541 additions and 576 deletions
880
.idea/workspace.xml
generated
880
.idea/workspace.xml
generated
File diff suppressed because it is too large
Load diff
|
|
@ -71,7 +71,7 @@ public class App extends JFrame {
|
||||||
|
|
||||||
HomePage home = new HomePage(this);
|
HomePage home = new HomePage(this);
|
||||||
|
|
||||||
/* app.addWindowListener(new WindowAdapter()
|
/*app.addWindowListener(new WindowAdapter()
|
||||||
{
|
{
|
||||||
public void windowClosing(WindowEvent e)
|
public void windowClosing(WindowEvent e)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ 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
|
||||||
|
|
|
||||||
|
|
@ -42,23 +42,25 @@ public class FetchHighscore extends SwingWorker<Void,Void> {
|
||||||
|
|
||||||
while (socketChannel.read(buffer) != -1) {
|
while (socketChannel.read(buffer) != -1) {
|
||||||
|
|
||||||
buffer.clear();
|
|
||||||
|
|
||||||
String line = new String(buffer.array(), buffer.position(), buffer.remaining());
|
String line = new String(buffer.array(), buffer.position(), buffer.remaining());
|
||||||
|
|
||||||
if (line.startsWith("MESSAGE")) {
|
if (line.startsWith("MESSAGE")) {
|
||||||
Message msg = Message.toMessage(line);
|
Message msg = Message.toMessage(line);
|
||||||
|
//MODIFICARE QUI. IL BUG SI VERIFICA ANCHE CON 2 CLIENT, INVIANDO IL GIOCO A UN CLIENT CHE STA SULLA PAGNA DI HIGHSCORES
|
||||||
if (msg.message.equals("HIGHSCORES") && msg.data != null) {
|
if (msg.message.equals("HIGHSCORES") && msg.data != null) {
|
||||||
|
|
||||||
for(int i = 0; i< msg.data.size()-1; i++){
|
for(int i = 0; i< msg.data.size()-1; i++){
|
||||||
String[] splitted = msg.data.get(i).split(":");
|
String[] splitted = msg.data.get(i).split(":");
|
||||||
globalRanks.addElement(new Pair<>(splitted[0],new Integer(splitted[1])));
|
globalRanks.addElement(new Pair<>(splitted[0],new Integer(splitted[1])));
|
||||||
}
|
}
|
||||||
|
buffer.clear();
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
buffer.clear();
|
||||||
|
|
||||||
}
|
}
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
|
|
|
||||||
|
|
@ -28,6 +28,7 @@ public class InvitePlayers extends SwingWorker<Boolean,Void> {
|
||||||
}
|
}
|
||||||
@Override
|
@Override
|
||||||
public Boolean doInBackground() {
|
public Boolean doInBackground() {
|
||||||
|
buffer = ByteBuffer.allocate(1024);
|
||||||
Message message = new Message("START_GAME", App.session.account.userName, App.session.token, userNames);
|
Message message = new Message("START_GAME", App.session.account.userName, App.session.token, userNames);
|
||||||
|
|
||||||
byte[] byteMessage = new String(message.toString()).getBytes();
|
byte[] byteMessage = new String(message.toString()).getBytes();
|
||||||
|
|
@ -40,7 +41,6 @@ public class InvitePlayers extends SwingWorker<Boolean,Void> {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
while (socketChannel.read(buffer) != -1) {
|
while (socketChannel.read(buffer) != -1) {
|
||||||
buffer.clear();
|
|
||||||
|
|
||||||
String line = new String(buffer.array(), buffer.position(), buffer.remaining());
|
String line = new String(buffer.array(), buffer.position(), buffer.remaining());
|
||||||
|
|
||||||
|
|
@ -51,9 +51,11 @@ public class InvitePlayers extends SwingWorker<Boolean,Void> {
|
||||||
new Callable() {
|
new Callable() {
|
||||||
@Override
|
@Override
|
||||||
public Object call() throws Exception {
|
public Object call() throws Exception {
|
||||||
|
buffer.clear();
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}, null);
|
}, null);
|
||||||
|
buffer.clear();
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -66,13 +68,16 @@ public class InvitePlayers extends SwingWorker<Boolean,Void> {
|
||||||
public Object call() throws Exception {
|
public Object call() throws Exception {
|
||||||
//In attesa dei giocatori
|
//In attesa dei giocatori
|
||||||
new GamePage(Page.window);
|
new GamePage(Page.window);
|
||||||
|
buffer.clear();
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}, null);
|
}, null);
|
||||||
|
buffer.clear();
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
buffer.clear();
|
||||||
}
|
}
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
|
|
|
||||||
|
|
@ -37,20 +37,29 @@ public class WaitForPlayers extends SwingWorker<DefaultListModel<String>,Default
|
||||||
@Override
|
@Override
|
||||||
public DefaultListModel<String> doInBackground() {
|
public DefaultListModel<String> doInBackground() {
|
||||||
try {
|
try {
|
||||||
|
buffer = ByteBuffer.allocate(1024);
|
||||||
|
String line1 = new String(buffer.array(), buffer.position(), buffer.remaining());
|
||||||
|
System.out.println("Questo è il buffer prima: " + line1);
|
||||||
TTDialog loading = new TTDialog("alert", "Waiting for users joins",null,null);
|
TTDialog loading = new TTDialog("alert", "Waiting for users joins",null,null);
|
||||||
buffer.flip();
|
buffer.flip();
|
||||||
while (this.socketChannel.read(this.buffer) != -1) {
|
|
||||||
|
|
||||||
String line = new String(this.buffer.array(), this.buffer.position(), this.buffer.remaining());
|
while (this.socketChannel.read(buffer) != -1) {
|
||||||
|
|
||||||
|
String line = new String(buffer.array(), buffer.position(), buffer.remaining());
|
||||||
|
// String line = new String()
|
||||||
buffer.clear();
|
buffer.clear();
|
||||||
|
|
||||||
if (line.startsWith("MESSAGE")) {
|
if (line.startsWith("MESSAGE")) {
|
||||||
buffer.clear();
|
buffer.clear();
|
||||||
|
System.out.println("Mi arriva questo dal server " + line);
|
||||||
|
|
||||||
Message msg = Message.toMessage(line);
|
Message msg = Message.toMessage(line);
|
||||||
|
System.out.println(msg.message);
|
||||||
if (msg.message.equals("JOIN_TIMEOUT")) {
|
if (msg.message.equals("JOIN_TIMEOUT")) {
|
||||||
loading.dispose();
|
loading.dispose();
|
||||||
joinTimeout = true;
|
joinTimeout = true;
|
||||||
|
System.out.println("JOIN TIMEOUT ENTERED");
|
||||||
|
|
||||||
new TTDialog("alert", "TIMEOUT!",
|
new TTDialog("alert", "TIMEOUT!",
|
||||||
new Callable() {
|
new Callable() {
|
||||||
@Override
|
@Override
|
||||||
|
|
@ -65,6 +74,8 @@ public class WaitForPlayers extends SwingWorker<DefaultListModel<String>,Default
|
||||||
|
|
||||||
if (msg.message.equals("MATCH_NOT_AVAILABLE")) {
|
if (msg.message.equals("MATCH_NOT_AVAILABLE")) {
|
||||||
loading.dispose();
|
loading.dispose();
|
||||||
|
System.out.println("MATCH NOT AVAILABLE ENTERED");
|
||||||
|
|
||||||
joinTimeout = true;
|
joinTimeout = true;
|
||||||
new TTDialog("alert", "THE GAME IS NOT MORE AVAILABLE!",
|
new TTDialog("alert", "THE GAME IS NOT MORE AVAILABLE!",
|
||||||
new Callable() {
|
new Callable() {
|
||||||
|
|
@ -80,6 +91,7 @@ public class WaitForPlayers extends SwingWorker<DefaultListModel<String>,Default
|
||||||
|
|
||||||
if (msg.message.equals("GAME_STARTED")) {
|
if (msg.message.equals("GAME_STARTED")) {
|
||||||
loading.dispose();
|
loading.dispose();
|
||||||
|
System.out.println("GAME STARTED ENTERED");
|
||||||
|
|
||||||
DefaultListModel<String> data;
|
DefaultListModel<String> data;
|
||||||
if(msg.data !=null ) {
|
if(msg.data !=null ) {
|
||||||
|
|
@ -96,9 +108,15 @@ public class WaitForPlayers extends SwingWorker<DefaultListModel<String>,Default
|
||||||
|
|
||||||
//socketChannel.close();
|
//socketChannel.close();
|
||||||
return words;
|
return words;
|
||||||
|
} else {
|
||||||
|
System.out.println("USCITO CON");
|
||||||
|
System.out.println(line);
|
||||||
|
return new DefaultListModel<>();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
buffer = ByteBuffer.allocate(1024);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,7 @@ public class Logger {
|
||||||
out = new PrintWriter(bw);
|
out = new PrintWriter(bw);
|
||||||
Date d = new Date();
|
Date d = new Date();
|
||||||
out.append("LOGGER ("+name+"): " + d.toString() + " - " + msg + "\n");
|
out.append("LOGGER ("+name+"): " + d.toString() + " - " + msg + "\n");
|
||||||
|
System.out.println("LOGGER ("+name+"): " + d.toString() + " - " + msg + "\n");
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,6 @@ public class AccountsManager {
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean exists(String userName) {
|
public boolean exists(String userName) {
|
||||||
synchronized(users) {
|
|
||||||
Iterator<User> i = users.iterator();
|
Iterator<User> i = users.iterator();
|
||||||
while (i.hasNext()) {
|
while (i.hasNext()) {
|
||||||
if (i.next().userName.equals(userName)) {
|
if (i.next().userName.equals(userName)) {
|
||||||
|
|
@ -47,11 +46,10 @@ public class AccountsManager {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean checkPassword(String userName, String password) {
|
public boolean checkPassword(String userName, String password) {
|
||||||
synchronized(users) {
|
|
||||||
Iterator<User> i = users.iterator();
|
Iterator<User> i = users.iterator();
|
||||||
while (i.hasNext()) {
|
while (i.hasNext()) {
|
||||||
User account = i.next();
|
User account = i.next();
|
||||||
|
|
@ -60,11 +58,10 @@ public class AccountsManager {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public User findUser(String userName){
|
public User findUser(String userName){
|
||||||
synchronized(users) {
|
|
||||||
Iterator<User> i = users.iterator();
|
Iterator<User> i = users.iterator();
|
||||||
while (i.hasNext()) {
|
while (i.hasNext()) {
|
||||||
User u = i.next();
|
User u = i.next();
|
||||||
|
|
@ -73,7 +70,7 @@ public class AccountsManager {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public int size(){
|
public int size(){
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,6 @@ import java.util.Iterator;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.concurrent.ExecutorService;
|
import java.util.concurrent.ExecutorService;
|
||||||
import java.util.concurrent.Executors;
|
import java.util.concurrent.Executors;
|
||||||
import java.util.concurrent.Future;
|
|
||||||
|
|
||||||
import static java.nio.channels.SelectionKey.OP_ACCEPT;
|
import static java.nio.channels.SelectionKey.OP_ACCEPT;
|
||||||
import static java.nio.channels.SelectionKey.OP_READ;
|
import static java.nio.channels.SelectionKey.OP_READ;
|
||||||
|
|
@ -57,16 +56,17 @@ 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...");
|
||||||
|
|
||||||
wordsReceiver = new ReceiveWords(datagramChannel, bufferWords);
|
wordsReceiver = new ReceiveWords(datagramChannel, bufferWords);
|
||||||
threadPool.submit(wordsReceiver);
|
threadPool.submit(wordsReceiver);
|
||||||
|
|
||||||
Logger.write("GamePage Service is running at "+this.serverPort+" port...");
|
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|
||||||
while (true) {
|
while (true) {
|
||||||
|
System.out.println("WAITING FOR MSG");
|
||||||
try {
|
try {
|
||||||
selector.select();
|
selector.select();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
|
|
@ -76,6 +76,7 @@ public class GameServer implements Runnable{
|
||||||
Iterator<SelectionKey> iter = selector.selectedKeys().iterator();
|
Iterator<SelectionKey> iter = selector.selectedKeys().iterator();
|
||||||
while (iter.hasNext()) {
|
while (iter.hasNext()) {
|
||||||
ByteBuffer bufferMessages = ByteBuffer.allocate(1024);
|
ByteBuffer bufferMessages = ByteBuffer.allocate(1024);
|
||||||
|
bufferMessages.clear();
|
||||||
SocketChannel client = null;
|
SocketChannel client = null;
|
||||||
SelectionKey key = iter.next();
|
SelectionKey key = iter.next();
|
||||||
iter.remove();
|
iter.remove();
|
||||||
|
|
@ -93,7 +94,7 @@ public class GameServer implements Runnable{
|
||||||
if (client.read(bufferMessages) != -1) {
|
if (client.read(bufferMessages) != -1) {
|
||||||
bufferMessages.flip();
|
bufferMessages.flip();
|
||||||
String line = new String(bufferMessages.array(), bufferMessages.position(), bufferMessages.remaining());
|
String line = new String(bufferMessages.array(), bufferMessages.position(), bufferMessages.remaining());
|
||||||
|
System.out.println(line);
|
||||||
if (line.startsWith("MESSAGE")) {
|
if (line.startsWith("MESSAGE")) {
|
||||||
SessionsManager.getInstance().printAll();
|
SessionsManager.getInstance().printAll();
|
||||||
Message msg = Message.toMessage(line);
|
Message msg = Message.toMessage(line);
|
||||||
|
|
|
||||||
|
|
@ -29,11 +29,12 @@ public class NotificationServer implements INotificationServer {
|
||||||
}
|
}
|
||||||
|
|
||||||
public synchronized void unregisterForCallback(INotificationClient client) throws RemoteException {
|
public synchronized void unregisterForCallback(INotificationClient client) throws RemoteException {
|
||||||
if(clients.remove(client)) {
|
if (clients.remove(client)) {
|
||||||
System.out.println("Client unregistered");
|
System.out.println("Client unregistered");
|
||||||
} else {
|
} else {
|
||||||
System.out.println("Unable to unregister client");
|
System.out.println("Unable to unregister client");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public synchronized void sendInvitations(String username, DefaultListModel<String> users){
|
public synchronized void sendInvitations(String username, DefaultListModel<String> users){
|
||||||
|
|
@ -43,14 +44,14 @@ public class NotificationServer implements INotificationServer {
|
||||||
while (i.hasNext()) {
|
while (i.hasNext()) {
|
||||||
client = (INotificationClient) i.next();
|
client = (INotificationClient) i.next();
|
||||||
try {
|
try {
|
||||||
|
|
||||||
|
System.out.println("SENDING INVITE TO "+users);
|
||||||
client.sendInvite(username, users);
|
client.sendInvite(username, users);
|
||||||
} catch (RemoteException e) {
|
} catch (RemoteException e) {
|
||||||
try {
|
System.out.println("Sembra down");
|
||||||
unregisterForCallback(client);
|
//unregisterForCallback(client);
|
||||||
} catch (RemoteException e1) {
|
|
||||||
e1.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -30,13 +30,12 @@ public class SessionsManager {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void printAll(){
|
public void printAll(){
|
||||||
synchronized(sessions) {
|
|
||||||
Iterator<Session> i = sessions.iterator();
|
Iterator<Session> i = sessions.iterator();
|
||||||
while (i.hasNext()) {
|
while (i.hasNext()) {
|
||||||
Session elem = i.next();
|
Session elem = i.next();
|
||||||
System.out.println(elem.account.userName + " | " + elem.token);
|
System.out.println(elem.account.userName + " | " + elem.token);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean remove(String userName){
|
public boolean remove(String userName){
|
||||||
|
|
@ -51,7 +50,6 @@ public class SessionsManager {
|
||||||
}
|
}
|
||||||
|
|
||||||
public Session getSession(String userName) {
|
public Session getSession(String userName) {
|
||||||
synchronized(sessions) {
|
|
||||||
Iterator<Session> i = sessions.iterator();
|
Iterator<Session> i = sessions.iterator();
|
||||||
while (i.hasNext()) {
|
while (i.hasNext()) {
|
||||||
Session elem = i.next();
|
Session elem = i.next();
|
||||||
|
|
@ -60,11 +58,10 @@ public class SessionsManager {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean exists(String userName) {
|
public boolean exists(String userName) {
|
||||||
synchronized(sessions) {
|
|
||||||
Iterator<Session> i = sessions.iterator();
|
Iterator<Session> i = sessions.iterator();
|
||||||
while (i.hasNext()) {
|
while (i.hasNext()) {
|
||||||
Session elem = i.next();
|
Session elem = i.next();
|
||||||
|
|
@ -73,12 +70,11 @@ public class SessionsManager {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public boolean isValidToken(String token) {
|
public boolean isValidToken(String token) {
|
||||||
synchronized(sessions) {
|
|
||||||
Iterator<Session> i = sessions.iterator();
|
Iterator<Session> i = sessions.iterator();
|
||||||
while (i.hasNext()) {
|
while (i.hasNext()) {
|
||||||
if (i.next().token.equals(token)) {
|
if (i.next().token.equals(token)) {
|
||||||
|
|
@ -86,7 +82,7 @@ public class SessionsManager {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -73,27 +73,28 @@ public class ThreadProxy implements Callable<Boolean> {
|
||||||
Boolean joinMatchRes = joinMatch.get();
|
Boolean joinMatchRes = joinMatch.get();
|
||||||
|
|
||||||
if(!joinMatchRes){
|
if(!joinMatchRes){
|
||||||
|
bufferMessage = ByteBuffer.allocate(1024);
|
||||||
|
|
||||||
//NON FARE NULLA, ASPETTA GLI ALTRI
|
//NON FARE NULLA, ASPETTA GLI ALTRI
|
||||||
Message message = new Message("INVITES_ALL_SENDED", "", "", new DefaultListModel<String>());
|
Message message = new Message("INVITES_ALL_SENDED", "", "", new DefaultListModel<>());
|
||||||
byteMessage = message.toString().getBytes();
|
byteMessage = message.toString().getBytes();
|
||||||
bufferMessage = ByteBuffer.wrap(byteMessage);
|
bufferMessage = ByteBuffer.wrap(byteMessage);
|
||||||
socketChannel.write(bufferMessage);
|
socketChannel.write(bufferMessage);
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<Boolean> joinTimeout = threadPool.submit(new JoinTimeout(match));
|
||||||
Future<Boolean> joinTimeout = threadPool.submit(new JoinTimeout(match));
|
joinTimeout.get();
|
||||||
match.timeout = joinTimeout;
|
if(match.joinTimeout){
|
||||||
joinTimeout.get();
|
Future<Boolean> sendMessageJoinTimeout = threadPool.submit(
|
||||||
if(match.joinTimeout){
|
new SendMessageToAllPlayers(match, new Message("JOIN_TIMEOUT", "", "", new DefaultListModel<>()), socketChannel));
|
||||||
Future<Boolean> sendMessageJoinTimeout = threadPool.submit(
|
Boolean sendMessageJoinTimeoutRes = sendMessageJoinTimeout.get();
|
||||||
new SendMessageToAllPlayers(match, new Message("JOIN_TIMEOUT", "", "", new DefaultListModel<>()), socketChannel));
|
if(!sendMessageJoinTimeoutRes){
|
||||||
Boolean sendMessageJoinTimeoutRes = sendMessageJoinTimeout.get();
|
activeMatches.remove(Match.findMatchIndex(activeMatches, match.matchCreator));
|
||||||
if(!sendMessageJoinTimeoutRes){
|
return sendMessageJoinTimeoutRes;
|
||||||
activeMatches.remove(Match.findMatchIndex(activeMatches,match.matchCreator));
|
|
||||||
return sendMessageJoinTimeoutRes;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
System.out.println("TIMEOUT FINITO SENZA EFFETTI");
|
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
System.out.println("TIMEOUT FINITO SENZA EFFETTI");
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -106,12 +107,12 @@ public class ThreadProxy implements Callable<Boolean> {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
Message message = new Message("USER_NOT_ONLINE", "", "", new DefaultListModel<String>());
|
Message message = new Message("USER_NOT_ONLINE", "", "", new DefaultListModel<>());
|
||||||
byteMessage = new String(message.toString()).getBytes();
|
byteMessage = new String(message.toString()).getBytes();
|
||||||
bufferMessage.clear();
|
bufferMessage.clear();
|
||||||
bufferMessage = ByteBuffer.wrap(byteMessage);
|
bufferMessage = ByteBuffer.wrap(byteMessage);
|
||||||
this.socketChannel.write(bufferMessage);
|
this.socketChannel.write(bufferMessage);
|
||||||
break;
|
return false;
|
||||||
}
|
}
|
||||||
} catch (InterruptedException e) {
|
} catch (InterruptedException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
|
|
@ -125,16 +126,22 @@ public class ThreadProxy implements Callable<Boolean> {
|
||||||
Future<DefaultListModel<String>> computeHighscores = threadPool.submit(new ComputeHighscores());
|
Future<DefaultListModel<String>> computeHighscores = threadPool.submit(new ComputeHighscores());
|
||||||
try {
|
try {
|
||||||
DefaultListModel<String> computeHighscoresRes = computeHighscores.get();
|
DefaultListModel<String> computeHighscoresRes = computeHighscores.get();
|
||||||
Message message = new Message("HIGHSCORES", "", "", computeHighscoresRes);
|
bufferMessage.clear();
|
||||||
byteMessage = message.toString().getBytes();
|
bufferMessage = ByteBuffer.allocate(1024);
|
||||||
|
|
||||||
bufferMessage = ByteBuffer.wrap(byteMessage);
|
Message message = new Message("HIGHSCORES", "", "", computeHighscoresRes);
|
||||||
try {
|
byteMessage = message.toString().getBytes();
|
||||||
socketChannel.write(bufferMessage);
|
|
||||||
} catch (IOException e) {
|
bufferMessage = ByteBuffer.wrap(byteMessage);
|
||||||
e.printStackTrace();
|
try {
|
||||||
}
|
String s = new String(bufferMessage.array(), bufferMessage.position(), bufferMessage.remaining());
|
||||||
break;
|
System.out.println("INVIO HIGHSCORES "+ s);
|
||||||
|
socketChannel.write(bufferMessage);
|
||||||
|
} catch (IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
} catch (InterruptedException e) {
|
} catch (InterruptedException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (ExecutionException e) {
|
} catch (ExecutionException e) {
|
||||||
|
|
@ -157,33 +164,35 @@ public class ThreadProxy implements Callable<Boolean> {
|
||||||
SocketChannel socketClient = match.playersSocket.get(i).getValue();
|
SocketChannel socketClient = match.playersSocket.get(i).getValue();
|
||||||
if (socketClient != null) {
|
if (socketClient != null) {
|
||||||
bufferMessage.clear();
|
bufferMessage.clear();
|
||||||
|
bufferMessage = ByteBuffer.allocate(1024);
|
||||||
|
|
||||||
Message message = new Message("GAME_STARTED", "", "", match.letters);
|
Message message = new Message("GAME_STARTED", "", "", match.letters);
|
||||||
match.startGame();
|
match.startGame();
|
||||||
|
|
||||||
match.timeout.cancel(true);
|
|
||||||
System.out.println("TIMEOUT CANCELLEd");
|
System.out.println("TIMEOUT CANCELLEd");
|
||||||
byteMessage = message.toString().getBytes();
|
byteMessage = message.toString().getBytes();
|
||||||
|
|
||||||
bufferMessage = ByteBuffer.wrap(byteMessage);
|
bufferMessage = ByteBuffer.wrap(byteMessage);
|
||||||
try {
|
try {
|
||||||
|
String s = new String(bufferMessage.array(), bufferMessage.position(), bufferMessage.remaining());
|
||||||
|
System.out.println("INVIO GAME_STARTED "+ s);
|
||||||
socketClient.write(bufferMessage);
|
socketClient.write(bufferMessage);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
|
|
||||||
}
|
}
|
||||||
//clientSocket.close();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
if (matchNotAvailable) {
|
if (matchNotAvailable) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//RISPONDI CON LA CLASSIFICA
|
|
||||||
// break;
|
|
||||||
//ULTIMO A JOINARE! INIZIA GIOCO
|
|
||||||
} else {
|
} else {
|
||||||
if(match == null){
|
if(match == null){
|
||||||
bufferMessage = ByteBuffer.allocate(1024);
|
bufferMessage = ByteBuffer.allocate(1024);
|
||||||
if (socketChannel != null) {
|
if (socketChannel != null) {
|
||||||
|
bufferMessage = ByteBuffer.allocate(1024);
|
||||||
|
|
||||||
Message msg = new Message("MATCH_NOT_AVAILABLE", "", null, new DefaultListModel<>());
|
Message msg = new Message("MATCH_NOT_AVAILABLE", "", null, new DefaultListModel<>());
|
||||||
bufferMessage.clear();
|
bufferMessage.clear();
|
||||||
byteMessage = msg.toString().getBytes();
|
byteMessage = msg.toString().getBytes();
|
||||||
|
|
|
||||||
|
|
@ -4,10 +4,11 @@ import com.texttwist.server.components.GameServer;
|
||||||
import com.texttwist.server.tasks.MatchTimeout;
|
import com.texttwist.server.tasks.MatchTimeout;
|
||||||
import constants.Config;
|
import constants.Config;
|
||||||
import javafx.util.Pair;
|
import javafx.util.Pair;
|
||||||
|
import models.Message;
|
||||||
|
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
import java.net.DatagramSocket;
|
import java.io.IOException;
|
||||||
import java.net.Socket;
|
import java.net.*;
|
||||||
import java.nio.channels.SocketChannel;
|
import java.nio.channels.SocketChannel;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
import java.util.concurrent.Callable;
|
import java.util.concurrent.Callable;
|
||||||
|
|
@ -27,7 +28,7 @@ public class Match {
|
||||||
public final String matchCreator;
|
public final String matchCreator;
|
||||||
public Integer multicastId;
|
public Integer multicastId;
|
||||||
public Future<Boolean> timeout;
|
public Future<Boolean> timeout;
|
||||||
public Future<Boolean> matchTimeout;
|
public boolean matchTimeout = true;
|
||||||
public boolean joinTimeout =true;
|
public boolean joinTimeout =true;
|
||||||
public DefaultListModel<String> letters;
|
public DefaultListModel<String> letters;
|
||||||
protected ExecutorService threadPool = Executors.newSingleThreadExecutor();
|
protected ExecutorService threadPool = Executors.newSingleThreadExecutor();
|
||||||
|
|
@ -46,15 +47,31 @@ public class Match {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Match findMatch(List<Match> matches, String matchName){
|
public Void sendScores(){
|
||||||
synchronized (matches) {
|
while (true) {
|
||||||
for (int i = 0; i < matches.size(); i++) {
|
System.out.println("SENDING");
|
||||||
if (matches.get(i).matchCreator.equals(matchName)) {
|
Message msg = new Message("FINALSCORE", "SERVER", "", this.getMatchPlayersScoreAsStringList());
|
||||||
return matches.get(i);
|
|
||||||
}
|
MulticastSocket multicastSocket = null;
|
||||||
|
try {
|
||||||
|
multicastSocket = new MulticastSocket(this.multicastId);
|
||||||
|
InetAddress ia = null;
|
||||||
|
ia = InetAddress.getByName(Config.ScoreMulticastServerURI);
|
||||||
|
DatagramPacket hi = new DatagramPacket(msg.toString().getBytes(), msg.toString().length(), ia, this.multicastId);
|
||||||
|
multicastSocket.send(hi);
|
||||||
|
} catch (IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
return null;
|
activeMatches.remove(Match.findMatchIndex(activeMatches, this.matchCreator));
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
public static Match findMatch(List<Match> matches, String matchName){
|
||||||
|
for (int i = 0; i < matches.size(); i++) {
|
||||||
|
if (matches.get(i).matchCreator.equals(matchName)) {
|
||||||
|
return matches.get(i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -93,19 +110,17 @@ public class Match {
|
||||||
|
|
||||||
public void startGame(){
|
public void startGame(){
|
||||||
this.started=true;
|
this.started=true;
|
||||||
this.matchTimeout = threadPool.submit(new MatchTimeout());
|
threadPool.submit(new MatchTimeout(this));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setScore(String player, Integer score){
|
public void setScore(String player, Integer score){
|
||||||
Match m = findMatchByPlayer(player);
|
Match m = findMatchByPlayer(player);
|
||||||
synchronized (m) {
|
m.printAll();
|
||||||
m.printAll();
|
|
||||||
|
|
||||||
for (int i = 0; i < m.playersScore.size(); i++) {
|
for (int i = 0; i < m.playersScore.size(); i++) {
|
||||||
if (m.playersScore.get(i).getKey().equals(player)) {
|
if (m.playersScore.get(i).getKey().equals(player)) {
|
||||||
m.playersScore.set(i, new Pair<String, Integer>(player, score));
|
m.playersScore.set(i, new Pair<String, Integer>(player, score));
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,6 @@ public class ComputeScore implements Callable<Integer> {
|
||||||
System.out.println(match);
|
System.out.println(match);
|
||||||
System.out.println("COMPUTE SCORE STAsssssRTED");
|
System.out.println("COMPUTE SCORE STAsssssRTED");
|
||||||
|
|
||||||
synchronized (match) {
|
|
||||||
System.out.print("CALCOLO LO SCORE PER " + match.matchCreator);
|
System.out.print("CALCOLO LO SCORE PER " + match.matchCreator);
|
||||||
Integer score = 0;
|
Integer score = 0;
|
||||||
|
|
||||||
|
|
@ -54,29 +53,19 @@ public class ComputeScore implements Callable<Integer> {
|
||||||
|
|
||||||
if(match.allPlayersSendedHisScore()) {
|
if(match.allPlayersSendedHisScore()) {
|
||||||
|
|
||||||
match.matchTimeout.cancel(true);
|
match.matchTimeout = false;
|
||||||
|
System.out.println("MATCH TIMEOUT CANCELLATO");
|
||||||
//channel.close();
|
//channel.close();
|
||||||
//Start receive words: tempo masimo 5 minuti per completare l'invio delle lettere.
|
//Start receive words: tempo masimo 5 minuti per completare l'invio delle lettere.
|
||||||
|
|
||||||
match.setUndefinedScorePlayersToZero();
|
match.setUndefinedScorePlayersToZero();
|
||||||
|
|
||||||
System.out.println("SEND BROADCAST");
|
System.out.println("SEND BROADCAST");
|
||||||
while (true) {
|
match.sendScores();
|
||||||
System.out.println("SENDING");
|
|
||||||
Message msg = new Message("FINALSCORE", "SERVER", "", match.getMatchPlayersScoreAsStringList());
|
|
||||||
|
|
||||||
MulticastSocket multicastSocket = new MulticastSocket(match.multicastId);
|
|
||||||
InetAddress ia = InetAddress.getByName(Config.ScoreMulticastServerURI);
|
|
||||||
DatagramPacket hi = new DatagramPacket(msg.toString().getBytes(), msg.toString().length(), ia, match.multicastId);
|
|
||||||
multicastSocket.send(hi);
|
|
||||||
activeMatches.remove(Match.findMatchIndex(activeMatches, match.matchCreator));
|
|
||||||
//multicastSocket.disconnect();
|
|
||||||
//multicastSocket.close();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return score;
|
return score;
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,11 @@
|
||||||
package com.texttwist.server.tasks;
|
package com.texttwist.server.tasks;
|
||||||
|
|
||||||
import com.sun.org.apache.xml.internal.security.algorithms.MessageDigestAlgorithm;
|
|
||||||
import com.texttwist.server.models.Match;
|
import com.texttwist.server.models.Match;
|
||||||
import javafx.util.Pair;
|
import javafx.util.Pair;
|
||||||
import models.Message;
|
|
||||||
|
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
import java.net.Socket;
|
|
||||||
import java.nio.ByteBuffer;
|
|
||||||
import java.nio.channels.SocketChannel;
|
import java.nio.channels.SocketChannel;
|
||||||
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;
|
||||||
import static com.texttwist.server.models.Match.findMatch;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by loke on 23/06/2017.
|
* Created by loke on 23/06/2017.
|
||||||
|
|
@ -28,7 +21,6 @@ public class JoinMatch implements Callable<Boolean> {
|
||||||
this.socketChannel = socketChannel;
|
this.socketChannel = socketChannel;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Boolean call() throws Exception {
|
public Boolean call() throws Exception {
|
||||||
final Match thisMatch = Match.findMatch(activeMatches, this.matchName);
|
final Match thisMatch = Match.findMatch(activeMatches, this.matchName);
|
||||||
|
|
|
||||||
|
|
@ -2,26 +2,42 @@ package com.texttwist.server.tasks;
|
||||||
|
|
||||||
import com.sun.org.apache.xpath.internal.operations.Bool;
|
import com.sun.org.apache.xpath.internal.operations.Bool;
|
||||||
import com.texttwist.server.models.Match;
|
import com.texttwist.server.models.Match;
|
||||||
|
import constants.Config;
|
||||||
|
import models.Message;
|
||||||
|
|
||||||
|
import java.net.DatagramPacket;
|
||||||
|
import java.net.InetAddress;
|
||||||
|
import java.net.MulticastSocket;
|
||||||
import java.util.concurrent.Callable;
|
import java.util.concurrent.Callable;
|
||||||
|
|
||||||
|
import static com.texttwist.server.components.GameServer.activeMatches;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by loke on 27/06/2017.
|
* Created by loke on 27/06/2017.
|
||||||
*/
|
*/
|
||||||
public class MatchTimeout implements Callable<Boolean> {
|
public class MatchTimeout implements Callable<Boolean> {
|
||||||
|
|
||||||
|
private Match match;
|
||||||
public MatchTimeout() {
|
public MatchTimeout(Match match) {
|
||||||
|
this.match = match;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Boolean call() throws Exception {
|
public Boolean call() throws Exception {
|
||||||
try {
|
try {
|
||||||
Thread.currentThread().sleep(3*60*1000); //TODO 5*60*1000
|
Thread.currentThread().sleep(1*60*1000); //TODO 5*60*1000
|
||||||
|
match.setUndefinedScorePlayersToZero();
|
||||||
|
|
||||||
|
if(match.matchTimeout) {
|
||||||
|
System.out.println("SEND BROADCAST BECAUSE TIMEOUT");
|
||||||
|
match.sendScores();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
} catch (InterruptedException e) {
|
} catch (InterruptedException e) {
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,8 +16,8 @@ import java.util.concurrent.Callable;
|
||||||
* Created by loke on 19/06/2017.
|
* Created by loke on 19/06/2017.
|
||||||
*/
|
*/
|
||||||
public class SendInvitations implements Callable<Boolean> {
|
public class SendInvitations implements Callable<Boolean> {
|
||||||
private final DefaultListModel<String> users;
|
private DefaultListModel<String> users;
|
||||||
private final String sender;
|
private String sender;
|
||||||
|
|
||||||
public SendInvitations(String sender, DefaultListModel<String> users) {
|
public SendInvitations(String sender, DefaultListModel<String> users) {
|
||||||
this.users = users;
|
this.users = users;
|
||||||
|
|
@ -27,10 +27,13 @@ public class SendInvitations implements Callable<Boolean> {
|
||||||
@Override
|
@Override
|
||||||
public Boolean call() throws Exception {
|
public Boolean call() throws Exception {
|
||||||
try {
|
try {
|
||||||
|
System.out.println("INVIA INVITO A" + users);
|
||||||
|
|
||||||
Server.notificationServer.sendInvitations(sender, users);
|
Server.notificationServer.sendInvitations(sender, users);
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
System.out.println("Eccezione" + e);
|
System.out.println("Eccezione" + e);
|
||||||
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
|
||||||
|
|
@ -1,30 +0,0 @@
|
||||||
package com.texttwist.server.tasks;
|
|
||||||
|
|
||||||
import com.texttwist.server.Server;
|
|
||||||
import com.texttwist.server.components.NotificationServer;
|
|
||||||
import com.texttwist.server.models.Match;
|
|
||||||
import constants.Config;
|
|
||||||
import interfaces.INotificationServer;
|
|
||||||
|
|
||||||
import javax.swing.*;
|
|
||||||
import java.rmi.registry.LocateRegistry;
|
|
||||||
import java.rmi.registry.Registry;
|
|
||||||
import java.rmi.server.UnicastRemoteObject;
|
|
||||||
import java.util.concurrent.Callable;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Created by loke on 19/06/2017.
|
|
||||||
*/
|
|
||||||
public class WaitForPlayers implements Callable<Boolean> {
|
|
||||||
private final Match match;
|
|
||||||
private String sender;
|
|
||||||
|
|
||||||
public WaitForPlayers(Match match) {
|
|
||||||
this.match = match;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Boolean call() throws Exception {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
1196
client_1.log
1196
client_1.log
File diff suppressed because it is too large
Load diff
755
server.log
755
server.log
|
|
@ -8501,3 +8501,758 @@ LOGGER (Server): Sun Jul 09 16:44:43 CEST 2017 - Invoked login with username=c A
|
||||||
LOGGER (Server): Sun Jul 09 16:44:43 CEST 2017 - Login successfull
|
LOGGER (Server): Sun Jul 09 16:44:43 CEST 2017 - Login successfull
|
||||||
LOGGER (Server): Sun Jul 09 16:44:45 CEST 2017 - Invoked login with username=d AND password=d
|
LOGGER (Server): Sun Jul 09 16:44:45 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
LOGGER (Server): Sun Jul 09 16:44:45 CEST 2017 - Login successfull
|
LOGGER (Server): Sun Jul 09 16:44:45 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 16:51:56 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Sun Jul 09 16:51:56 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 16:51:56 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Sun Jul 09 16:51:56 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 16:52:04 CEST 2017 - Invoked login with username=a AND password=
|
||||||
|
LOGGER (Server): Sun Jul 09 16:52:04 CEST 2017 - Login unsuccessfull
|
||||||
|
LOGGER (Server): Sun Jul 09 16:52:06 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Sun Jul 09 16:52:06 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 16:52:08 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Sun Jul 09 16:52:08 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 16:52:11 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Sun Jul 09 16:52:11 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 16:52:15 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Sun Jul 09 16:52:15 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 16:55:53 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Sun Jul 09 16:55:53 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 16:55:53 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 16:55:53 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Sun Jul 09 16:56:03 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Sun Jul 09 16:56:03 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 16:56:05 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Sun Jul 09 16:56:05 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:05:13 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:05:13 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:05:13 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:05:13 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Sun Jul 09 17:05:19 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Sun Jul 09 17:05:19 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:05:22 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Sun Jul 09 17:05:22 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:05:42 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Sun Jul 09 17:05:42 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:05:45 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Sun Jul 09 17:05:45 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:07:39 CEST 2017 - Invoked register with username=e AND password=e
|
||||||
|
LOGGER (Server): Sun Jul 09 17:07:39 CEST 2017 - Registration successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:07:40 CEST 2017 - Invoked login with username= AND password=
|
||||||
|
LOGGER (Server): Sun Jul 09 17:07:40 CEST 2017 - Login unsuccessfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:07:41 CEST 2017 - Invoked login with username=e AND password=e
|
||||||
|
LOGGER (Server): Sun Jul 09 17:07:41 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:07:44 CEST 2017 - Invoked register with username=f AND password=f
|
||||||
|
LOGGER (Server): Sun Jul 09 17:07:44 CEST 2017 - Registration successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:07:46 CEST 2017 - Invoked login with username=f AND password=f
|
||||||
|
LOGGER (Server): Sun Jul 09 17:07:46 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:08:32 CEST 2017 - Invoked register with username=da AND password=da
|
||||||
|
LOGGER (Server): Sun Jul 09 17:08:32 CEST 2017 - Registration successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:08:37 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Sun Jul 09 17:08:37 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:08:44 CEST 2017 - Invoked login with username=da AND password=da
|
||||||
|
LOGGER (Server): Sun Jul 09 17:08:44 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:09:02 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:09:02 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:09:02 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Sun Jul 09 17:09:02 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:09:13 CEST 2017 - Invoked register with username=da AND password=da
|
||||||
|
LOGGER (Server): Sun Jul 09 17:09:13 CEST 2017 - Registration successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:09:15 CEST 2017 - Invoked login with username=da AND password=da
|
||||||
|
LOGGER (Server): Sun Jul 09 17:09:15 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:09:16 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Sun Jul 09 17:09:16 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:09:34 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Sun Jul 09 17:09:34 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:10:47 CEST 2017 - Invoked register with username=e AND password=e
|
||||||
|
LOGGER (Server): Sun Jul 09 17:10:47 CEST 2017 - Registration successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:10:49 CEST 2017 - Invoked login with username=e AND password=e
|
||||||
|
LOGGER (Server): Sun Jul 09 17:10:49 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:11:35 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Sun Jul 09 17:11:35 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:12:46 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:12:46 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:12:46 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Sun Jul 09 17:12:46 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:13:01 CEST 2017 - Invoked login with username=a AND password=
|
||||||
|
LOGGER (Server): Sun Jul 09 17:13:01 CEST 2017 - Login unsuccessfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:13:02 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Sun Jul 09 17:13:02 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:13:06 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Sun Jul 09 17:13:06 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:13:10 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Sun Jul 09 17:13:10 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:13:14 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Sun Jul 09 17:13:14 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:14:40 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:14:40 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:14:40 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Sun Jul 09 17:14:40 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:14:46 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Sun Jul 09 17:14:46 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:14:48 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Sun Jul 09 17:14:48 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:15:12 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Sun Jul 09 17:15:12 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:15:25 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Sun Jul 09 17:15:25 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:16:09 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:16:09 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:16:09 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:16:09 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Sun Jul 09 17:16:18 CEST 2017 - Invoked login with username=a AND password=
|
||||||
|
LOGGER (Server): Sun Jul 09 17:16:18 CEST 2017 - Login unsuccessfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:16:20 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Sun Jul 09 17:16:20 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:16:22 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Sun Jul 09 17:16:22 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:16:35 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Sun Jul 09 17:16:35 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:17:17 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:17:17 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:17:17 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Sun Jul 09 17:17:17 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:17:22 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Sun Jul 09 17:17:22 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:17:25 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Sun Jul 09 17:17:25 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:17:35 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Sun Jul 09 17:17:35 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:18:45 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Sun Jul 09 17:18:45 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:25:47 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:25:48 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:25:48 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:25:48 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Sun Jul 09 17:25:55 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Sun Jul 09 17:25:55 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:25:58 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Sun Jul 09 17:25:58 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:26:09 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Sun Jul 09 17:26:09 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:26:40 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Sun Jul 09 17:26:40 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:27:32 CEST 2017 - Invoked register with username=e AND password=e
|
||||||
|
LOGGER (Server): Sun Jul 09 17:27:32 CEST 2017 - Registration successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:27:34 CEST 2017 - Invoked login with username=e AND password=e
|
||||||
|
LOGGER (Server): Sun Jul 09 17:27:34 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:31:31 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:31:31 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:31:31 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Sun Jul 09 17:31:31 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:31:42 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Sun Jul 09 17:31:42 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:31:47 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Sun Jul 09 17:31:47 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:31:51 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Sun Jul 09 17:31:51 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:31:55 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Sun Jul 09 17:31:55 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:32:00 CEST 2017 - Invoked login with username=e AND password=e
|
||||||
|
LOGGER (Server): Sun Jul 09 17:32:00 CEST 2017 - Login unsuccessfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:32:04 CEST 2017 - Invoked register with username=e AND password=e
|
||||||
|
LOGGER (Server): Sun Jul 09 17:32:04 CEST 2017 - Registration successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:32:06 CEST 2017 - Invoked login with username=e AND password=e
|
||||||
|
LOGGER (Server): Sun Jul 09 17:32:06 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:32:13 CEST 2017 - Invoked register with username=f AND password=f
|
||||||
|
LOGGER (Server): Sun Jul 09 17:32:13 CEST 2017 - Registration successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:32:15 CEST 2017 - Invoked login with username=f AND password=f
|
||||||
|
LOGGER (Server): Sun Jul 09 17:32:15 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:39:12 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:39:12 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:39:12 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Sun Jul 09 17:39:12 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:39:22 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Sun Jul 09 17:39:22 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:39:25 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Sun Jul 09 17:39:25 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:39:29 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Sun Jul 09 17:39:29 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:39:33 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Sun Jul 09 17:39:33 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:39:43 CEST 2017 - Invoked register with username=ff AND password=
|
||||||
|
LOGGER (Server): Sun Jul 09 17:39:45 CEST 2017 - Invoked register with username=f AND password=f
|
||||||
|
LOGGER (Server): Sun Jul 09 17:39:45 CEST 2017 - Registration successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:39:47 CEST 2017 - Invoked login with username=f AND password=f
|
||||||
|
LOGGER (Server): Sun Jul 09 17:39:47 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:39:57 CEST 2017 - Invoked register with username=e AND password=e
|
||||||
|
LOGGER (Server): Sun Jul 09 17:39:57 CEST 2017 - Registration successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:39:59 CEST 2017 - Invoked login with username=e AND password=e
|
||||||
|
LOGGER (Server): Sun Jul 09 17:39:59 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:45:33 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:45:33 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:45:33 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Sun Jul 09 17:45:33 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Sun Jul 09 17:45:37 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Sun Jul 09 17:45:37 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:45:40 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Sun Jul 09 17:45:40 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:45:54 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Sun Jul 09 17:45:54 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Sun Jul 09 17:46:40 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Sun Jul 09 17:46:40 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:10:00 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:10:00 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:10:00 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 10:10:00 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:10:05 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 10:10:05 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:10:08 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 10:10:08 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:10:09 CEST 2017 - Invoked logout with username=b AND token=3jls39jlbtcldoip7hujqd9gsk
|
||||||
|
LOGGER (Server): Mon Jul 10 10:10:09 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:10:09 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 10:10:23 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 10:10:23 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:11:22 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:11:23 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:11:23 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 10:11:23 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:11:29 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 10:11:29 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:11:33 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 10:11:33 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:11:36 CEST 2017 - Invoked logout with username=a AND token=uvf3td8aef49si0um7oj6ocdgo
|
||||||
|
LOGGER (Server): Mon Jul 10 10:11:36 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:11:36 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 10:11:41 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 10:11:41 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:12:15 CEST 2017 - Invoked logout with username=b AND token=s9o2rkbumpeq6e0kbmkmmq1ntt
|
||||||
|
LOGGER (Server): Mon Jul 10 10:12:15 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:12:15 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 10:12:21 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 10:12:21 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:12:41 CEST 2017 - Invoked logout with username=b AND token=aejj6upgvsfcpb0eb9d5fcef83
|
||||||
|
LOGGER (Server): Mon Jul 10 10:12:41 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:12:41 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 10:17:42 CEST 2017 - Invoked logout with username=a AND token=ir34h2ldh7hisak7qlpmoorl07
|
||||||
|
LOGGER (Server): Mon Jul 10 10:17:42 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:17:42 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 10:19:49 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:19:49 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:19:49 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 10:19:49 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:19:56 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 10:19:56 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:19:59 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 10:19:59 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:20:02 CEST 2017 - Invoked logout with username=b AND token=ig628ualrubti52d8hj668dq4p
|
||||||
|
LOGGER (Server): Mon Jul 10 10:20:02 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:20:02 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 10:20:13 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 10:20:13 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:20:33 CEST 2017 - Invoked logout with username=a AND token=n9uti8ib2ti5ov1ntedn5dmr1b
|
||||||
|
LOGGER (Server): Mon Jul 10 10:20:33 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:20:33 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 10:26:41 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:26:41 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:26:41 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 10:26:41 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:26:46 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 10:26:46 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:26:48 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 10:26:48 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:26:50 CEST 2017 - Invoked logout with username=a AND token=2td806fa0dusito9segde5h4eb
|
||||||
|
LOGGER (Server): Mon Jul 10 10:26:50 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:26:50 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 10:26:57 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 10:26:57 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:27:07 CEST 2017 - Invoked logout with username=b AND token=7dg5apd314dpg1l8khgs3bjjfe
|
||||||
|
LOGGER (Server): Mon Jul 10 10:27:07 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:27:07 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 10:27:10 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 10:27:10 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:27:21 CEST 2017 - Invoked logout with username=b AND token=qfm6rqdlsp86r0t0h0v3284qvs
|
||||||
|
LOGGER (Server): Mon Jul 10 10:27:21 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 10:27:24 CEST 2017 - Invoked login with username=b AND password=B
|
||||||
|
LOGGER (Server): Mon Jul 10 10:27:24 CEST 2017 - Login unsuccessfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:27:26 CEST 2017 - Invoked login with username=B AND password=B
|
||||||
|
LOGGER (Server): Mon Jul 10 10:27:26 CEST 2017 - Login unsuccessfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:27:29 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 10:27:29 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:28:00 CEST 2017 - Invoked logout with username=b AND token=bmoch9o059jjf4a5j7nuj9nll
|
||||||
|
LOGGER (Server): Mon Jul 10 10:28:00 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:28:00 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 10:28:01 CEST 2017 - Invoked logout with username=a AND token=hjegensqna5rcdej0he0be081h
|
||||||
|
LOGGER (Server): Mon Jul 10 10:28:01 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:28:01 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 10:28:13 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:28:13 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:28:13 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 10:28:13 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:28:18 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 10:28:18 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:28:20 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 10:28:20 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:28:23 CEST 2017 - Invoked logout with username=b AND token=cav8jdu7c2k34akodgok33hctg
|
||||||
|
LOGGER (Server): Mon Jul 10 10:28:23 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:28:23 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 10:28:25 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 10:28:26 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:30:01 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:30:01 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:30:01 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 10:30:01 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:30:08 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 10:30:08 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:30:11 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 10:30:11 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:30:12 CEST 2017 - Invoked logout with username=b AND token=42vtdkgfn8s4s40oho4n35lrub
|
||||||
|
LOGGER (Server): Mon Jul 10 10:30:12 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:30:12 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 10:30:15 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 10:30:15 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:30:48 CEST 2017 - Invoked logout with username=a AND token=otc68qd743k243hgrkcgujkmq
|
||||||
|
LOGGER (Server): Mon Jul 10 10:30:48 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:30:48 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 10:33:43 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:33:43 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:33:43 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:33:43 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 10:33:50 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 10:33:50 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:33:52 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 10:33:52 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:33:54 CEST 2017 - Invoked logout with username=b AND token=5eq16k58lbar6ucqmo23h3cf7j
|
||||||
|
LOGGER (Server): Mon Jul 10 10:33:54 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:33:54 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 10:33:57 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 10:33:57 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:45:04 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:45:04 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:45:04 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 10:45:04 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:45:11 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 10:45:11 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:45:15 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 10:45:15 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:45:16 CEST 2017 - Invoked logout with username=b AND token=7t3uuro5n7b1dagdif8ah1q8r2
|
||||||
|
LOGGER (Server): Mon Jul 10 10:45:16 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:45:16 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 10:45:19 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 10:45:19 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:45:50 CEST 2017 - Invoked logout with username=a AND token=t73rgj4tvqvq49e8jao435050n
|
||||||
|
LOGGER (Server): Mon Jul 10 10:45:50 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:45:50 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 10:47:09 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:47:09 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:47:09 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:47:09 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 10:47:35 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 10:47:35 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:47:38 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 10:47:38 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:47:41 CEST 2017 - Invoked logout with username=b AND token=g07s5kbbn24ktocl3vq5ou1mqt
|
||||||
|
LOGGER (Server): Mon Jul 10 10:47:41 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:47:41 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 10:47:48 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 10:47:48 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:52:31 CEST 2017 - Invoked logout with username=b AND token=n2i8ksttrpaa8l8iefvpjqc3sm
|
||||||
|
LOGGER (Server): Mon Jul 10 10:52:31 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:52:31 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 10:53:58 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:53:58 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:53:58 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 10:53:58 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 10:54:03 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 10:54:03 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:54:06 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 10:54:06 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:54:07 CEST 2017 - Invoked logout with username=b AND token=4n2popjabp190o9v9kt9adt142
|
||||||
|
LOGGER (Server): Mon Jul 10 10:54:07 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:54:07 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 10:54:10 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 10:54:10 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:56:19 CEST 2017 - Invoked logout with username=a AND token=hf5i68ldem27kd4i8snjnn0qpq
|
||||||
|
LOGGER (Server): Mon Jul 10 10:56:19 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:56:19 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 10:56:20 CEST 2017 - Invoked logout with username=b AND token=fspjdr4le7cdifmh91hlj10upv
|
||||||
|
LOGGER (Server): Mon Jul 10 10:56:20 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 10:56:20 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 11:02:59 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 11:03:00 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 11:03:00 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 11:03:00 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 11:04:17 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 11:04:17 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 11:04:17 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 11:04:17 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 11:05:06 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 11:05:06 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 11:05:06 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 11:05:06 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 11:05:51 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 11:05:51 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 11:05:51 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 11:05:51 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 11:06:12 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 11:06:12 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 11:06:14 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 11:06:14 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 11:06:16 CEST 2017 - Invoked logout with username=b AND token=6sutno229ss5en6m8eodc85n79
|
||||||
|
LOGGER (Server): Mon Jul 10 11:06:16 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 11:06:16 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 11:06:27 CEST 2017 - Invoked logout with username=a AND token=g57lp77sna6e2s5jti42v86qgs
|
||||||
|
LOGGER (Server): Mon Jul 10 11:06:27 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 11:06:27 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 11:06:36 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 11:06:36 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 11:06:43 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 11:06:43 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 11:07:27 CEST 2017 - Invoked logout with username=b AND token=78ervtosopgtr4petpvpnv943s
|
||||||
|
LOGGER (Server): Mon Jul 10 11:07:27 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 11:07:27 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 11:07:28 CEST 2017 - Invoked logout with username=a AND token=9lj057d9ueubj5c925bbhn0afe
|
||||||
|
LOGGER (Server): Mon Jul 10 11:07:28 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 11:07:28 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 12:00:49 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 12:00:50 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 12:00:50 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 12:00:50 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 12:00:55 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 12:00:55 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:00:57 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 12:00:57 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:00:59 CEST 2017 - Invoked logout with username=b AND token=31gdkkg0djok1tjnvm9oaf99lb
|
||||||
|
LOGGER (Server): Mon Jul 10 12:00:59 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:00:59 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 12:01:03 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 12:01:03 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:01:36 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Mon Jul 10 12:01:36 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:02:38 CEST 2017 - Invoked logout with username=a AND token=3udh9lhj27cddcbambkdsii1a4
|
||||||
|
LOGGER (Server): Mon Jul 10 12:02:38 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:02:38 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 12:02:39 CEST 2017 - Invoked logout with username=b AND token=gddpjge0kff3m4a1tocqbgfrrh
|
||||||
|
LOGGER (Server): Mon Jul 10 12:02:39 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:02:39 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 12:03:15 CEST 2017 - Invoked logout with username=c AND token=eqk32fglivm35sgfllv5ed3fd4
|
||||||
|
LOGGER (Server): Mon Jul 10 12:03:15 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:03:15 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 12:12:05 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 12:12:05 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 12:12:05 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 12:12:05 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 12:12:11 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 12:12:11 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:12:14 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 12:12:14 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:12:22 CEST 2017 - Invoked logout with username=b AND token=45p9pi5odinpbgf0ahr1r0n0
|
||||||
|
LOGGER (Server): Mon Jul 10 12:12:22 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:12:22 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 12:12:24 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 12:12:24 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:12:49 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Mon Jul 10 12:12:49 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:13:02 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Mon Jul 10 12:13:02 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:14:06 CEST 2017 - Invoked logout with username=a AND token=sm1947e4eupffdojv2rlr7sn7l
|
||||||
|
LOGGER (Server): Mon Jul 10 12:14:06 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:14:06 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 12:14:37 CEST 2017 - Invoked logout with username=d AND token=80gelafpdgq6e3u5jjjeloechh
|
||||||
|
LOGGER (Server): Mon Jul 10 12:14:37 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:14:37 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 12:14:38 CEST 2017 - Invoked logout with username=c AND token=5scl0sfc68kudaij3n0e6rvj6f
|
||||||
|
LOGGER (Server): Mon Jul 10 12:14:38 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:14:38 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 12:14:40 CEST 2017 - Invoked logout with username=b AND token=k0m5h0n7483b08t730u9vh9ffj
|
||||||
|
LOGGER (Server): Mon Jul 10 12:14:40 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:14:40 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 12:21:15 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 12:21:15 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 12:21:15 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 12:21:15 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 12:21:21 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 12:21:21 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:21:23 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 12:21:23 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:21:38 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Mon Jul 10 12:21:38 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:21:42 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Mon Jul 10 12:21:42 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:22:49 CEST 2017 - Invoked logout with username=a AND token=ptl8j9jtpv6ggu2tvvgpl53q59
|
||||||
|
LOGGER (Server): Mon Jul 10 12:22:49 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:22:49 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 12:22:50 CEST 2017 - Invoked logout with username=b AND token=cgour531r6jcvk29n4hjqnhck2
|
||||||
|
LOGGER (Server): Mon Jul 10 12:22:50 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:22:50 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 12:22:59 CEST 2017 - Invoked logout with username=d AND token=pnes55eb4qldlbq7kgmghogscv
|
||||||
|
LOGGER (Server): Mon Jul 10 12:22:59 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:22:59 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 12:23:00 CEST 2017 - Invoked logout with username=c AND token=hr8h36e4oop492l17044l9fh3u
|
||||||
|
LOGGER (Server): Mon Jul 10 12:23:00 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:23:00 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 12:23:55 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 12:23:55 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 12:23:55 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 12:23:55 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 12:24:42 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 12:24:42 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 12:24:43 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 12:24:43 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 12:24:45 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 12:24:45 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:24:48 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 12:24:48 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:25:00 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Mon Jul 10 12:25:00 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:25:11 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Mon Jul 10 12:25:11 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:32:16 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 12:32:16 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 12:32:16 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 12:32:16 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 12:32:22 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 12:32:22 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:32:26 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 12:32:26 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:32:42 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Mon Jul 10 12:32:42 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:32:52 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Mon Jul 10 12:32:52 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:37:02 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 12:37:02 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 12:37:02 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 12:37:02 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 12:37:07 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 12:37:07 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:37:12 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 12:37:12 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 12:37:33 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Mon Jul 10 12:37:33 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:15:34 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:15:34 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:15:34 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:15:34 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 18:15:45 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 18:15:45 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:15:46 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 18:15:46 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:18:33 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:18:34 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:18:34 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 18:18:34 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:18:39 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 18:18:40 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:18:43 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 18:18:43 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:19:24 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Mon Jul 10 18:19:24 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:19:36 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Mon Jul 10 18:19:36 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:23:08 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:23:08 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:23:08 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:23:08 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 18:23:14 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 18:23:14 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:23:20 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 18:23:20 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:25:56 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:25:56 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:25:56 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 18:25:56 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:26:03 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 18:26:03 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:26:06 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 18:26:06 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:26:17 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Mon Jul 10 18:26:17 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:26:46 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:26:46 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:26:46 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:26:46 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 18:26:50 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 18:26:50 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:26:54 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 18:26:54 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:27:04 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Mon Jul 10 18:27:04 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:27:38 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Mon Jul 10 18:27:38 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:31:09 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:31:09 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:31:09 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 18:31:09 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:31:13 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 18:31:13 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:31:17 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 18:31:17 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:31:26 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Mon Jul 10 18:31:26 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:31:43 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Mon Jul 10 18:31:43 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:33:32 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:33:32 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:33:32 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 18:33:32 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:33:38 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 18:33:38 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:33:41 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 18:33:41 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:33:56 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Mon Jul 10 18:33:56 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:34:11 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Mon Jul 10 18:34:11 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:36:40 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:36:40 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:36:40 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 18:36:40 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:36:45 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 18:36:46 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:36:50 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 18:36:50 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:37:12 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Mon Jul 10 18:37:12 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:37:23 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Mon Jul 10 18:37:23 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:39:50 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:39:50 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:39:50 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 18:39:50 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:39:54 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 18:39:54 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:40:00 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 18:40:00 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:40:13 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Mon Jul 10 18:40:14 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:40:17 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Mon Jul 10 18:40:17 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:45:17 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:45:17 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:45:17 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 18:45:17 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:45:26 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 18:45:26 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:45:31 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 18:45:31 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:45:36 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Mon Jul 10 18:45:36 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:45:47 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Mon Jul 10 18:45:47 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:47:18 CEST 2017 - Invoked logout with username=a AND token=olvu5e2394komd9fu4h7dsmb8q
|
||||||
|
LOGGER (Server): Mon Jul 10 18:47:18 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:47:18 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 18:47:19 CEST 2017 - Invoked logout with username=b AND token=57jhm8na08i0rgbr88lh8mu8a
|
||||||
|
LOGGER (Server): Mon Jul 10 18:47:19 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:47:19 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 18:47:20 CEST 2017 - Invoked logout with username=c AND token=c4n3dvd88j93qhc0nh0kn96ujg
|
||||||
|
LOGGER (Server): Mon Jul 10 18:47:20 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:47:20 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 18:47:22 CEST 2017 - Invoked logout with username=d AND token=mofd0g7jqa6d7al751qt9sbuoj
|
||||||
|
LOGGER (Server): Mon Jul 10 18:47:22 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:47:22 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 18:47:28 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:47:28 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:47:28 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 18:47:28 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 18:47:35 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 18:47:35 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 18:47:40 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 18:47:40 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 20:58:30 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 20:58:31 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 20:58:31 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 20:58:31 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 20:59:29 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 20:59:29 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 20:59:29 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 20:59:29 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 20:59:34 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 20:59:34 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 20:59:41 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 20:59:41 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:07:15 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 21:07:16 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 21:07:16 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 21:07:16 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 21:07:21 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 21:07:21 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:07:23 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 21:07:23 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:08:36 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 21:08:37 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 21:08:37 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 21:08:37 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 21:08:45 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 21:08:45 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:08:49 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 21:08:49 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:15:18 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 21:15:18 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 21:15:18 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 21:15:18 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 21:15:25 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 21:15:25 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:15:29 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 21:15:29 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:15:37 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Mon Jul 10 21:15:37 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:16:02 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Mon Jul 10 21:16:02 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:19:19 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 21:19:19 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 21:19:19 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 21:19:19 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 21:19:22 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 21:19:22 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:19:26 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 21:19:26 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:19:44 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Mon Jul 10 21:19:44 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:19:48 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Mon Jul 10 21:19:48 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:19:56 CEST 2017 - Invoked register with username=e AND password=e
|
||||||
|
LOGGER (Server): Mon Jul 10 21:19:56 CEST 2017 - Registration successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:19:58 CEST 2017 - Invoked login with username=e AND password=e
|
||||||
|
LOGGER (Server): Mon Jul 10 21:19:58 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:20:07 CEST 2017 - Invoked register with username=f AND password=f
|
||||||
|
LOGGER (Server): Mon Jul 10 21:20:07 CEST 2017 - Registration successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:20:10 CEST 2017 - Invoked login with username=f AND password=f
|
||||||
|
LOGGER (Server): Mon Jul 10 21:20:10 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:22:04 CEST 2017 - Invoked logout with username=e AND token=2bdgtd337d0jphh2rmbukcuh0b
|
||||||
|
LOGGER (Server): Mon Jul 10 21:22:04 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:22:04 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 21:22:08 CEST 2017 - Invoked login with username=e AND password=e
|
||||||
|
LOGGER (Server): Mon Jul 10 21:22:08 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:22:24 CEST 2017 - Invoked logout with username=e AND token=j5leljktslsqec84lbrr8dscun
|
||||||
|
LOGGER (Server): Mon Jul 10 21:22:24 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:22:24 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 21:22:28 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 21:22:28 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:22:28 CEST 2017 - Invoked logout with username=b AND token=e1b8mf789273d2uujdtjvblk3q
|
||||||
|
LOGGER (Server): Mon Jul 10 21:22:28 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:22:28 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 21:22:30 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 21:22:30 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:26:17 CEST 2017 - Server starting ...
|
||||||
|
LOGGER (Server): Mon Jul 10 21:26:18 CEST 2017 - Auth Service running at 9999 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 21:26:18 CEST 2017 - Server started
|
||||||
|
LOGGER (Server): Mon Jul 10 21:26:18 CEST 2017 - GamePage Service is running at 10000 port...
|
||||||
|
LOGGER (Server): Mon Jul 10 21:26:22 CEST 2017 - Invoked login with username=a AND password=a
|
||||||
|
LOGGER (Server): Mon Jul 10 21:26:22 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:26:25 CEST 2017 - Invoked login with username=b AND password=b
|
||||||
|
LOGGER (Server): Mon Jul 10 21:26:25 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:26:33 CEST 2017 - Invoked login with username=c AND password=c
|
||||||
|
LOGGER (Server): Mon Jul 10 21:26:33 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:26:42 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Mon Jul 10 21:26:42 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:31:17 CEST 2017 - Invoked register with username=ee AND password=ee
|
||||||
|
LOGGER (Server): Mon Jul 10 21:31:17 CEST 2017 - Registration successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:31:19 CEST 2017 - Invoked login with username=ee AND password=ee
|
||||||
|
LOGGER (Server): Mon Jul 10 21:31:19 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:32:30 CEST 2017 - Invoked register with username=ff AND password=ff
|
||||||
|
LOGGER (Server): Mon Jul 10 21:32:30 CEST 2017 - Registration successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:32:32 CEST 2017 - Invoked login with username=ff AND password=ff
|
||||||
|
LOGGER (Server): Mon Jul 10 21:32:32 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:33:30 CEST 2017 - Invoked logout with username=d AND token=qc8prf73jb8rjrdepa5esffh22
|
||||||
|
LOGGER (Server): Mon Jul 10 21:33:30 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:33:30 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 21:33:33 CEST 2017 - Invoked login with username=d AND password=d
|
||||||
|
LOGGER (Server): Mon Jul 10 21:33:33 CEST 2017 - Login successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:33:40 CEST 2017 - Invoked logout with username=a AND token=gs51bvblgj1f1dtgksjraraf2r
|
||||||
|
LOGGER (Server): Mon Jul 10 21:33:40 CEST 2017 - Logout successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:33:40 CEST 2017 - Logout successfull (but something gone wrong)
|
||||||
|
LOGGER (Server): Mon Jul 10 21:33:44 CEST 2017 - Invoked register with username=asd AND password=asd
|
||||||
|
LOGGER (Server): Mon Jul 10 21:33:44 CEST 2017 - Registration successfull
|
||||||
|
LOGGER (Server): Mon Jul 10 21:33:47 CEST 2017 - Invoked login with username=asd AND password=asd
|
||||||
|
LOGGER (Server): Mon Jul 10 21:33:47 CEST 2017 - Login successfull
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue