RMI callback for manage the invitations
This commit is contained in:
parent
cedaf8f009
commit
c54393c2b9
43 changed files with 2060 additions and 556 deletions
930
.idea/workspace.xml
generated
930
.idea/workspace.xml
generated
File diff suppressed because it is too large
Load diff
|
|
@ -4,9 +4,21 @@ import com.texttwist.client.pages.AuthService;
|
|||
import com.texttwist.client.pages.Home;
|
||||
import com.texttwist.client.pages.MatchService;
|
||||
import com.texttwist.client.pages.SessionService;
|
||||
import com.texttwist.client.services.ClientNotification;
|
||||
import constants.Config;
|
||||
import interfaces.INotificationClient;
|
||||
import interfaces.INotificationServer;
|
||||
import utilities.Logger;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.awt.*;
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.rmi.NotBoundException;
|
||||
import java.rmi.RemoteException;
|
||||
import java.rmi.registry.LocateRegistry;
|
||||
import java.rmi.registry.Registry;
|
||||
import java.rmi.server.UnicastRemoteObject;
|
||||
|
||||
/**
|
||||
* Created by loke on 13/06/2017.
|
||||
|
|
@ -17,13 +29,34 @@ public class App extends JFrame {
|
|||
public static SessionService sessionService;
|
||||
public static MatchService matchService;
|
||||
|
||||
public App(){
|
||||
public App() throws IOException {
|
||||
setPreferredSize( new Dimension( 640, 480 ));
|
||||
setSize(new Dimension(640,480));
|
||||
setLocation(100,100);
|
||||
setResizable( false );
|
||||
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||||
|
||||
//Definitions of registry for auth
|
||||
long id = Thread.currentThread().getId();
|
||||
Logger logger = new Logger(new File("./client_"+id+".log"), "Client"+id);
|
||||
|
||||
Logger.write("Client starting ...");
|
||||
try {
|
||||
Registry registry = LocateRegistry.getRegistry(Config.NotificationServerStubPort);
|
||||
INotificationServer server = (INotificationServer) registry.lookup(Config.NotificationServerName);
|
||||
|
||||
/* si registra per la callback */
|
||||
System.out.println("Registering for callback");
|
||||
INotificationClient callbackObj = new ClientNotification();
|
||||
INotificationClient stub = (INotificationClient) UnicastRemoteObject.exportObject(callbackObj, 0);
|
||||
|
||||
server.registerForCallback(stub);
|
||||
} catch (RemoteException e) {
|
||||
e.printStackTrace();
|
||||
} catch (NotBoundException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
//Init services
|
||||
authService = new AuthService();
|
||||
sessionService = new SessionService();
|
||||
|
|
|
|||
|
|
@ -1,23 +0,0 @@
|
|||
package com.texttwist.client.constants;
|
||||
|
||||
/**
|
||||
* Created by loke on 15/06/2017.
|
||||
*/
|
||||
public class Config {
|
||||
|
||||
private static String AuthServerURI = "localhost";
|
||||
private static Integer AuthServerPort = 9999;
|
||||
|
||||
public static String GameServerURI = "localhost";
|
||||
public static Integer GameServerPort = 10000;
|
||||
|
||||
|
||||
public static String getAuthServerURI(){
|
||||
return "rmi://".concat(AuthServerURI).concat(":").concat(AuthServerPort.toString());
|
||||
}
|
||||
|
||||
public static String getGameServerURI(){
|
||||
return "tcp://".concat(GameServerURI).concat(":").concat(GameServerPort.toString());
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
package com.texttwist.client.pages;
|
||||
|
||||
import com.texttwist.client.App;
|
||||
import com.texttwist.client.constants.Config;
|
||||
import constants.Config;
|
||||
import interfaces.IAuth;
|
||||
import models.Response;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
package com.texttwist.client.pages;
|
||||
|
||||
import com.texttwist.client.constants.Palette;
|
||||
import com.texttwist.client.pages.*;
|
||||
import constants.Palette;
|
||||
import com.texttwist.client.ui.*;
|
||||
|
||||
import javax.swing.*;
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
package com.texttwist.client.pages;
|
||||
|
||||
import com.texttwist.client.constants.Palette;
|
||||
import constants.Palette;
|
||||
import com.texttwist.client.ui.*;
|
||||
|
||||
import javax.swing.*;
|
||||
import javax.swing.event.ListDataListener;
|
||||
import java.awt.*;
|
||||
import java.io.IOException;
|
||||
import java.util.concurrent.Callable;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
package com.texttwist.client.pages;
|
||||
import com.texttwist.client.constants.Palette;
|
||||
import constants.Palette;
|
||||
import com.texttwist.client.ui.*;
|
||||
import com.texttwist.client.ui.TTDialog;
|
||||
import models.Response;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
package com.texttwist.client.pages;
|
||||
|
||||
import com.texttwist.client.constants.Palette;
|
||||
import constants.Palette;
|
||||
import com.texttwist.client.ui.*;
|
||||
|
||||
import javax.swing.*;
|
||||
|
|
|
|||
|
|
@ -1,8 +1,7 @@
|
|||
package com.texttwist.client.pages;
|
||||
|
||||
import com.texttwist.client.App;
|
||||
import com.texttwist.client.constants.Config;
|
||||
import interfaces.IAuth;
|
||||
import constants.Config;
|
||||
import models.Message;
|
||||
import models.Response;
|
||||
import org.json.simple.JsonObject;
|
||||
|
|
@ -10,13 +9,8 @@ import org.json.simple.JsonObject;
|
|||
import javax.swing.*;
|
||||
import java.io.*;
|
||||
import java.net.InetSocketAddress;
|
||||
import java.net.MalformedURLException;
|
||||
import java.net.Socket;
|
||||
import java.nio.ByteBuffer;
|
||||
import java.nio.channels.SocketChannel;
|
||||
import java.rmi.Naming;
|
||||
import java.rmi.NotBoundException;
|
||||
import java.rmi.RemoteException;
|
||||
|
||||
/**
|
||||
* Created by loke on 18/06/2017.
|
||||
|
|
@ -33,7 +27,7 @@ public class MatchService {
|
|||
SocketChannel clientSocket = SocketChannel.open(socketAddress);
|
||||
|
||||
|
||||
Message message = new Message("START_GAME", App.sessionService.account.token, userNames);
|
||||
Message message = new Message("START_GAME", App.sessionService.account.userName, App.sessionService.account.token, userNames);
|
||||
|
||||
byte[] byteMessage = new String(message.toString()).getBytes();
|
||||
ByteBuffer buffer = ByteBuffer.wrap(byteMessage);
|
||||
|
|
|
|||
|
|
@ -1,12 +1,11 @@
|
|||
package com.texttwist.client.pages;
|
||||
|
||||
import com.texttwist.client.constants.Palette;
|
||||
import constants.Palette;
|
||||
import com.texttwist.client.ui.*;
|
||||
import models.Response;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.awt.*;
|
||||
import java.io.IOException;
|
||||
import java.util.concurrent.Callable;
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
package com.texttwist.client.pages;
|
||||
import com.texttwist.client.App;
|
||||
import com.texttwist.client.constants.Palette;
|
||||
import constants.Palette;
|
||||
import com.texttwist.client.ui.*;
|
||||
|
||||
import javax.swing.*;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
package com.texttwist.client.pages;
|
||||
|
||||
import com.texttwist.client.constants.Palette;
|
||||
import constants.Palette;
|
||||
import com.texttwist.client.ui.*;
|
||||
|
||||
import javax.swing.*;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
package com.texttwist.client.pages;
|
||||
|
||||
import com.texttwist.client.constants.Palette;
|
||||
import constants.Palette;
|
||||
import com.texttwist.client.ui.*;
|
||||
import models.Response;
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,39 @@
|
|||
package com.texttwist.client.services;
|
||||
import com.texttwist.client.App;
|
||||
import interfaces.INotificationClient;
|
||||
import models.Response;
|
||||
import utilities.Logger;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.rmi.RemoteException;
|
||||
|
||||
/**
|
||||
* Created by loke on 15/06/2017.
|
||||
*/
|
||||
public class ClientNotification implements INotificationClient {
|
||||
|
||||
|
||||
public ClientNotification() throws RemoteException {
|
||||
}
|
||||
|
||||
@Override
|
||||
public Response sendInvite(String userName, DefaultListModel<String> users) throws RemoteException {
|
||||
Logger.write("Invoked invitation with username=" + userName + "|" + users.toString() );
|
||||
|
||||
if(users.contains(App.sessionService.account.userName)){
|
||||
Logger.write(userName+" ti ha sfidato!");
|
||||
}
|
||||
//Aggiungi alla lista di inviti
|
||||
/* if ((userName != null && !userName.isEmpty()) && (password != null && !password.equals(""))) {
|
||||
if(AccountsManager.getInstance().register(userName, password)){
|
||||
Logger.write("Registration successfull");
|
||||
return new Response("Registration successfull", 200, null);
|
||||
} else {
|
||||
Logger.write("Registration unsuccessfull");
|
||||
return new Response("Registration unsuccessfull: Username exist!", 400, null);
|
||||
}
|
||||
}*/
|
||||
return new Response("Invitation received!", 200, null);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -1,13 +1,11 @@
|
|||
package com.texttwist.client.ui;
|
||||
|
||||
import com.texttwist.client.constants.Palette;
|
||||
import com.texttwist.client.pages.Page;
|
||||
import constants.Palette;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.awt.*;
|
||||
import java.awt.event.MouseAdapter;
|
||||
import java.awt.event.MouseEvent;
|
||||
import java.io.IOException;
|
||||
import java.util.concurrent.Callable;
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
package com.texttwist.client.ui;
|
||||
|
||||
import com.texttwist.client.constants.Palette;
|
||||
import constants.Palette;
|
||||
|
||||
import javax.swing.*;
|
||||
import javax.swing.border.EmptyBorder;
|
||||
|
|
|
|||
|
|
@ -1,14 +1,10 @@
|
|||
package com.texttwist.client.ui;
|
||||
|
||||
import com.texttwist.client.constants.Palette;
|
||||
import com.texttwist.client.pages.Home;
|
||||
import com.texttwist.client.ui.TTContainer;
|
||||
import com.texttwist.client.ui.TTLabel;
|
||||
import constants.Palette;
|
||||
|
||||
import javax.swing.*;
|
||||
import javax.swing.border.EmptyBorder;
|
||||
import java.awt.*;
|
||||
import java.io.IOException;
|
||||
import java.util.concurrent.Callable;
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -1,11 +1,9 @@
|
|||
package com.texttwist.client.ui;
|
||||
import com.texttwist.client.constants.Palette;
|
||||
import constants.Palette;
|
||||
import javax.swing.*;
|
||||
import java.awt.*;
|
||||
import java.awt.event.KeyAdapter;
|
||||
import java.awt.event.KeyEvent;
|
||||
import java.awt.event.MouseAdapter;
|
||||
import java.awt.event.MouseEvent;
|
||||
import java.util.concurrent.Callable;
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,12 +1,7 @@
|
|||
package com.texttwist.client.ui;
|
||||
|
||||
import com.texttwist.client.constants.Palette;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.awt.*;
|
||||
import java.awt.event.MouseAdapter;
|
||||
import java.awt.event.MouseEvent;
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
package com.texttwist.client.ui;
|
||||
|
||||
import com.texttwist.client.constants.Palette;
|
||||
import constants.Palette;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.awt.*;
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
package com.texttwist.client.ui;
|
||||
|
||||
import com.texttwist.client.constants.Palette;
|
||||
import constants.Palette;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.awt.*;
|
||||
import java.awt.event.*;
|
||||
|
||||
/**
|
||||
* Created by loke on 13/06/2017.
|
||||
|
|
|
|||
|
|
@ -1,11 +1,9 @@
|
|||
package com.texttwist.client.ui;
|
||||
|
||||
import com.texttwist.client.constants.Palette;
|
||||
import constants.Palette;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.awt.*;
|
||||
import java.awt.event.MouseAdapter;
|
||||
import java.awt.event.MouseEvent;
|
||||
|
||||
/**
|
||||
* Created by loke on 13/06/2017.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
package com.texttwist.client.ui;
|
||||
|
||||
import com.texttwist.client.constants.Palette;
|
||||
import constants.Palette;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.awt.*;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
package com.texttwist.client.ui;
|
||||
|
||||
import com.texttwist.client.constants.Palette;
|
||||
import constants.Palette;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.awt.*;
|
||||
|
|
|
|||
|
|
@ -1,13 +1,9 @@
|
|||
package com.texttwist.client.ui;
|
||||
|
||||
import com.texttwist.client.constants.Palette;
|
||||
import constants.Palette;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.awt.*;
|
||||
import java.awt.event.*;
|
||||
import java.util.concurrent.Executors;
|
||||
import java.util.concurrent.ScheduledExecutorService;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
/**
|
||||
* Created by loke on 13/06/2017.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
package com.texttwist.client.ui;
|
||||
|
||||
import com.texttwist.client.constants.Palette;
|
||||
import constants.Palette;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.awt.*;
|
||||
|
|
@ -15,14 +15,12 @@ public class TTScrollList extends JList {
|
|||
setBackground(Palette.scrollPanel_backgroundColor);
|
||||
setFont(Palette.inputBox_font);
|
||||
setBounds(position.x, position.y, dimension.width, dimension.height);
|
||||
// setPreferredSize(dimension);
|
||||
setForeground(Palette.fontColor);
|
||||
|
||||
JScrollPane scrollPane = new JScrollPane();
|
||||
scrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
|
||||
scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
|
||||
scrollPane.setBounds(position.x, position.y, dimension.width, dimension.height);
|
||||
// scrollPane.setMinimumSize(dimension);
|
||||
scrollPane.setBackground(Palette.scrollPanel_backgroundColor);
|
||||
scrollPane.setViewportView(this);
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
package com.texttwist.client.ui;
|
||||
import com.texttwist.client.constants.Palette;
|
||||
import com.texttwist.client.pages.MatchSetup;
|
||||
import com.texttwist.client.App;
|
||||
import constants.Palette;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.awt.*;
|
||||
|
|
@ -24,7 +24,7 @@ public class TTSearchBar extends TTContainer{
|
|||
@Override
|
||||
public Object call() throws Exception {
|
||||
String username = ctx.getText();
|
||||
if(!username.equals("")) {
|
||||
if(!username.equals("") && !username.equals(App.sessionService.account.userName)) {
|
||||
ctx.setText("");
|
||||
list.addElement(username);
|
||||
}
|
||||
|
|
|
|||
32
Commons/src/constants/Config.java
Normal file
32
Commons/src/constants/Config.java
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
package constants;
|
||||
|
||||
/**
|
||||
* Created by loke on 15/06/2017.
|
||||
*/
|
||||
public class Config {
|
||||
|
||||
public static String AuthServerURI = "localhost";
|
||||
public static Integer AuthServerPort = 9999;
|
||||
|
||||
public static String GameServerURI = "localhost";
|
||||
public static Integer GameServerPort = 10000;
|
||||
|
||||
public static String NotificationServerURI = "localhost";
|
||||
public static Integer NotificationServerPort = 20000;
|
||||
public static Integer NotificationServerStubPort = 5000;
|
||||
public static String NotificationServerName ="notification";
|
||||
|
||||
|
||||
public static String getNotificationServerURI(){
|
||||
return "rmi://".concat(NotificationServerURI).concat(":").concat(NotificationServerPort.toString());
|
||||
}
|
||||
|
||||
public static String getAuthServerURI(){
|
||||
return "rmi://".concat(AuthServerURI).concat(":").concat(AuthServerPort.toString());
|
||||
}
|
||||
|
||||
public static String getGameServerURI(){
|
||||
return "tcp://".concat(GameServerURI).concat(":").concat(GameServerPort.toString());
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.texttwist.client.constants;
|
||||
package constants;
|
||||
|
||||
import java.awt.*;
|
||||
|
||||
15
Commons/src/interfaces/INotificationClient.java
Normal file
15
Commons/src/interfaces/INotificationClient.java
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
package interfaces;
|
||||
|
||||
import models.Response;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.rmi.Remote;
|
||||
import java.rmi.RemoteException;
|
||||
|
||||
/**
|
||||
* Created by loke on 19/06/2017.
|
||||
*/
|
||||
public interface INotificationClient extends Remote{
|
||||
|
||||
Response sendInvite(String userName, DefaultListModel<String> users) throws RemoteException;
|
||||
}
|
||||
16
Commons/src/interfaces/INotificationServer.java
Normal file
16
Commons/src/interfaces/INotificationServer.java
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
package interfaces;
|
||||
|
||||
import java.rmi.Remote;
|
||||
import java.rmi.RemoteException;
|
||||
|
||||
/**
|
||||
* Created by loke on 19/06/2017.
|
||||
*/
|
||||
public interface INotificationServer extends Remote {
|
||||
/* registrazione per la callback */
|
||||
public void registerForCallback (INotificationClient ClientInterface) throws RemoteException;
|
||||
|
||||
/* cancella registrazione per la callback */
|
||||
public void unregisterForCallback (INotificationClient ClientInterface) throws RemoteException;
|
||||
|
||||
}
|
||||
|
|
@ -9,12 +9,14 @@ import java.util.regex.Pattern;
|
|||
* Created by loke on 18/06/2017.
|
||||
*/
|
||||
public class Message implements Serializable {
|
||||
public String sender;
|
||||
public String message;
|
||||
public DefaultListModel<String> data;
|
||||
public String token;
|
||||
|
||||
public Message(String message, String token, DefaultListModel<String> data) {
|
||||
public Message(String message, String sender, String token, DefaultListModel<String> data) {
|
||||
this.message = message;
|
||||
this.sender = sender;
|
||||
this.data = data;
|
||||
this.token = token;
|
||||
}
|
||||
|
|
@ -25,7 +27,7 @@ public class Message implements Serializable {
|
|||
for(int i = 0; i< data.size(); i++){
|
||||
dataToString+=data.get(i)+"|";
|
||||
}
|
||||
return "MESSAGE?token="+token+"&message="+message+"&"+dataToString;
|
||||
return "MESSAGE?sender="+sender+"&token="+token+"&message="+message+"&"+dataToString;
|
||||
}
|
||||
|
||||
public static Message toMessage(String data){
|
||||
|
|
@ -33,6 +35,11 @@ public class Message implements Serializable {
|
|||
int divisorType = data.indexOf("=");
|
||||
data = data.substring(divisorType+1, data.length());
|
||||
|
||||
int divisorSender= data.indexOf("&");
|
||||
String sender = data.substring(0,divisorSender);
|
||||
int divisorSender_end = data.indexOf("=");
|
||||
data = data.substring(divisorSender_end+1, data.length());
|
||||
|
||||
int divisorToken= data.indexOf("&");
|
||||
String token = data.substring(0,divisorToken);
|
||||
int divisorToken_end = data.indexOf("=");
|
||||
|
|
@ -51,6 +58,6 @@ public class Message implements Serializable {
|
|||
dataList.addElement(dataArray[i]);
|
||||
}
|
||||
|
||||
return new Message(message,token,dataList);
|
||||
return new Message(message,sender,token,dataList);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,20 +2,23 @@ package com.texttwist.server;
|
|||
|
||||
import com.texttwist.server.components.Auth;
|
||||
import com.texttwist.server.components.GameServer;
|
||||
import com.texttwist.server.components.NotificationServer;
|
||||
import constants.Config;
|
||||
import interfaces.INotificationServer;
|
||||
import utilities.Logger;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.rmi.AlreadyBoundException;
|
||||
import java.rmi.RemoteException;
|
||||
import java.rmi.registry.LocateRegistry;
|
||||
import java.rmi.registry.Registry;
|
||||
import java.rmi.server.UnicastRemoteObject;
|
||||
|
||||
/**
|
||||
* Created by loke on 15/06/2017.
|
||||
*/
|
||||
public class Server {
|
||||
|
||||
public static NotificationServer notificationServer;
|
||||
public Server() throws IOException {
|
||||
//Start services
|
||||
Logger logger = new Logger(new File("./server.log"), "Server");
|
||||
|
|
@ -23,23 +26,30 @@ public class Server {
|
|||
Logger.write("Server starting ...");
|
||||
try {
|
||||
//Definitions of registry for auth
|
||||
Auth auth = new Auth(9999);
|
||||
Registry registry = LocateRegistry.createRegistry(auth.serverPort);
|
||||
registry.bind("auth", auth);
|
||||
Auth auth = new Auth(Config.AuthServerPort);
|
||||
Registry authRegistry = LocateRegistry.createRegistry(auth.serverPort);
|
||||
authRegistry.bind("auth", auth);
|
||||
|
||||
GameServer server = new GameServer(10000);
|
||||
new Thread(server).start();
|
||||
GameServer gameServer = new GameServer(Config.GameServerPort);
|
||||
new Thread(gameServer).start();
|
||||
|
||||
try {
|
||||
/*registrazione presso il registry */
|
||||
notificationServer = new NotificationServer();
|
||||
INotificationServer stub = (INotificationServer) UnicastRemoteObject.exportObject(notificationServer, Config.NotificationServerPort);
|
||||
LocateRegistry.createRegistry(Config.NotificationServerStubPort);
|
||||
Registry notificationRegistry = LocateRegistry.getRegistry(Config.NotificationServerStubPort);
|
||||
notificationRegistry.bind(Config.NotificationServerName, stub);
|
||||
|
||||
|
||||
} catch (Exception e) {
|
||||
System.out.println("Eccezione" + e);
|
||||
}
|
||||
Logger.write("Server started");
|
||||
|
||||
} catch (RemoteException e) {
|
||||
System.out.println(e.getMessage());
|
||||
e.printStackTrace();
|
||||
} catch (AlreadyBoundException e) {
|
||||
System.out.println(e.getMessage());
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -46,7 +46,6 @@ public class AccountsManager {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
public boolean checkPassword(String userName, String password) {
|
||||
synchronized(accounts) {
|
||||
Iterator<Account> i = accounts.iterator();
|
||||
|
|
|
|||
|
|
@ -62,10 +62,11 @@ public class Auth extends UnicastRemoteObject implements IAuth {
|
|||
public Response logout(String userName, String token) throws RemoteException {
|
||||
Logger.write("Invoked logout with username=" + userName + " AND " + " token=" + token);
|
||||
if ((userName != null && !userName.isEmpty()) && (token != null && !token.isEmpty())) {
|
||||
SessionsManager.getInstance().remove(userName);
|
||||
Logger.write("Logout successfull");
|
||||
boolean res = SessionsManager.getInstance().remove(userName);
|
||||
if(res) {
|
||||
Logger.write("Logout successfull");
|
||||
|
||||
return new Response("Logout successfull", 200, null);
|
||||
}
|
||||
}
|
||||
|
||||
SessionsManager.getInstance().remove(userName);
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@ import java.nio.channels.Selector;
|
|||
import java.nio.channels.ServerSocketChannel;
|
||||
import java.nio.channels.SocketChannel;
|
||||
import java.util.Iterator;
|
||||
import java.util.concurrent.*;
|
||||
|
||||
import static java.nio.channels.SelectionKey.OP_ACCEPT;
|
||||
import static java.nio.channels.SelectionKey.OP_READ;
|
||||
|
|
@ -29,7 +28,6 @@ public class GameServer implements Runnable{
|
|||
protected ServerSocketChannel serverSocketChannel = null;
|
||||
protected ThreadProxy proxy;
|
||||
protected Selector selector = null;
|
||||
protected JsonObject msg = null;
|
||||
|
||||
public GameServer(int port){
|
||||
this.serverPort = port;
|
||||
|
|
|
|||
|
|
@ -0,0 +1,53 @@
|
|||
package com.texttwist.server.components;
|
||||
|
||||
import interfaces.INotificationClient;
|
||||
import interfaces.INotificationServer;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.rmi.Remote;
|
||||
import java.rmi.RemoteException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Created by loke on 19/06/2017.
|
||||
*/
|
||||
public class NotificationServer implements INotificationServer {
|
||||
|
||||
private List<INotificationClient> clients;
|
||||
public NotificationServer() throws RemoteException {
|
||||
super();
|
||||
clients = new ArrayList<INotificationClient>();
|
||||
}
|
||||
|
||||
public synchronized void registerForCallback(INotificationClient clientInterface) throws RemoteException {
|
||||
if(!clients.contains(clientInterface)){
|
||||
clients.add(clientInterface);
|
||||
System.out.print("New client registered");
|
||||
}
|
||||
}
|
||||
|
||||
public synchronized void unregisterForCallback(INotificationClient client) throws RemoteException {
|
||||
if(clients.remove(client)) {
|
||||
System.out.print("Client unregistered");
|
||||
} else {
|
||||
System.out.print("Unable to unregister client");
|
||||
}
|
||||
}
|
||||
|
||||
public void update(String username, DefaultListModel<String> users) throws RemoteException {
|
||||
doCallbacks(username, users);
|
||||
}
|
||||
|
||||
private synchronized void doCallbacks(String username, DefaultListModel<String> users) throws RemoteException{
|
||||
System.out.print("Starting callbacks");
|
||||
Iterator i = clients.iterator();
|
||||
while(i.hasNext()){
|
||||
INotificationClient client = (INotificationClient) i.next();
|
||||
|
||||
//Calcola i valori da inviare e inviali
|
||||
client.sendInvite(username, users);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -30,10 +30,17 @@ public class SessionsManager {
|
|||
}
|
||||
|
||||
public boolean remove(String userName){
|
||||
return sessions.remove(exists(userName));
|
||||
if(exists(userName)) {
|
||||
Session s = getSession(userName);
|
||||
if(s != null) {
|
||||
sessions.remove(s);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public Session exists(String userName) {
|
||||
public Session getSession(String userName) {
|
||||
synchronized(sessions) {
|
||||
Iterator<Session> i = sessions.iterator();
|
||||
while (i.hasNext()) {
|
||||
|
|
@ -46,6 +53,19 @@ public class SessionsManager {
|
|||
}
|
||||
}
|
||||
|
||||
public boolean exists(String userName) {
|
||||
synchronized(sessions) {
|
||||
Iterator<Session> i = sessions.iterator();
|
||||
while (i.hasNext()) {
|
||||
Session elem = i.next();
|
||||
if (elem.userName.equals(userName)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public boolean isValidToken(String token) {
|
||||
synchronized(sessions) {
|
||||
|
|
@ -60,6 +80,11 @@ public class SessionsManager {
|
|||
}
|
||||
|
||||
|
||||
public void printSessions() {
|
||||
for(int i = 0; i<sessions.size(); i++){
|
||||
System.out.println(sessions.get(i).toString());
|
||||
}
|
||||
}
|
||||
public int size(){
|
||||
return sessions.size();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,13 +1,9 @@
|
|||
package com.texttwist.server.components;
|
||||
|
||||
import com.texttwist.server.tasks.CheckOnlineUsers;
|
||||
import com.texttwist.server.tasks.SendInvitations;
|
||||
import models.Message;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.io.ObjectInputStream;
|
||||
import java.net.ServerSocket;
|
||||
import java.net.Socket;
|
||||
import java.util.concurrent.*;
|
||||
|
||||
/**
|
||||
|
|
@ -28,20 +24,41 @@ public class ThreadProxy implements Runnable {
|
|||
public void run() {
|
||||
System.out.println("Selecting right task for new thread");
|
||||
|
||||
System.out.println(request.token);
|
||||
System.out.println(request.sender);
|
||||
System.out.println(request.message);
|
||||
System.out.println(request.data);
|
||||
|
||||
|
||||
|
||||
if(isValidToken(request.token)){
|
||||
switch(request.message){
|
||||
case "START_GAME":
|
||||
Future<Boolean> newTask = threadPool.submit(new CheckOnlineUsers(request.data));
|
||||
Boolean returnedValue = null;
|
||||
Future<Boolean> onlineUsers = threadPool.submit(new CheckOnlineUsers(request.data));
|
||||
Boolean res = null;
|
||||
try {
|
||||
returnedValue = newTask.get();
|
||||
System.out.println(returnedValue);
|
||||
res = onlineUsers.get();
|
||||
SessionsManager.getInstance().printSessions();
|
||||
if(res){
|
||||
Future<Boolean> sendInvitations = threadPool.submit(new SendInvitations(request.sender, request.data));
|
||||
try {
|
||||
res = sendInvitations.get();
|
||||
System.out.println(res);
|
||||
if (res) {
|
||||
System.out.println("SJSJSJSJSJ");
|
||||
|
||||
}
|
||||
} catch (InterruptedException e) {
|
||||
e.printStackTrace();
|
||||
} catch (ExecutionException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
} catch (InterruptedException e) {
|
||||
e.printStackTrace();
|
||||
} catch (ExecutionException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
System.out.println(returnedValue);
|
||||
|
||||
default:
|
||||
break;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
package com.texttwist.server.components;
|
||||
package com.texttwist.server.tasks;
|
||||
|
||||
import com.texttwist.server.components.SessionsManager;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.util.concurrent.Callable;
|
||||
|
|
@ -16,9 +18,10 @@ public class CheckOnlineUsers implements Callable<Boolean> {
|
|||
@Override
|
||||
public Boolean call() throws Exception {
|
||||
System.out.print("Check If users are online!");
|
||||
System.out.println(users);
|
||||
for(int i = 0; i < 1; i++){
|
||||
Thread.sleep(2000);
|
||||
for(int i = 0; i < users.size(); i++){
|
||||
if(!(SessionsManager.getInstance().exists(users.get(i)))){
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
38
Server/src/com/texttwist/server/tasks/SendInvitations.java
Normal file
38
Server/src/com/texttwist/server/tasks/SendInvitations.java
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
package com.texttwist.server.tasks;
|
||||
|
||||
import com.texttwist.server.Server;
|
||||
import com.texttwist.server.components.NotificationServer;
|
||||
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 SendInvitations implements Callable<Boolean> {
|
||||
private final DefaultListModel<String> users;
|
||||
private String sender;
|
||||
|
||||
public SendInvitations( String sender, DefaultListModel<String> users) {
|
||||
this.users = users;
|
||||
this.sender = sender;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Boolean call() throws Exception {
|
||||
System.out.print("SendInvitations!");
|
||||
try {
|
||||
Server.notificationServer.update(sender, users);
|
||||
|
||||
} catch (Exception e) {
|
||||
System.out.println("Eccezione" + e);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
886
client_1.log
Normal file
886
client_1.log
Normal file
|
|
@ -0,0 +1,886 @@
|
|||
LOGGER (Server): Mon Jun 19 16:50:43 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 16:50:43 CEST 2017 - Notification Service running at 20000 port...
|
||||
LOGGER (Server): Mon Jun 19 16:51:14 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 16:51:15 CEST 2017 - Notification Service running at 20000 port...
|
||||
LOGGER (Server): Mon Jun 19 18:22:42 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 18:27:53 CEST 2017 - Server starting ...
|
||||
LOGGER (Client1): Mon Jun 19 18:30:30 CEST 2017 - Client starting ...
|
||||
LOGGER (Client1): Mon Jun 19 18:31:52 CEST 2017 - Client starting ...
|
||||
LOGGER (Client1): Mon Jun 19 18:31:53 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:31:54 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:31:56 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:31:57 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:31:59 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:00 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:02 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:03 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:05 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:06 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:08 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:09 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:11 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:12 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:14 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:15 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:17 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:18 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:20 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:21 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:23 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:25 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:26 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:28 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:29 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:31 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:32 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:34 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:35 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:37 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:38 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:40 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:41 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:43 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:44 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:46 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:47 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:49 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:50 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:52 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:53 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:55 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:56 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:58 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:32:59 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:01 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:02 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:04 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:05 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:07 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:08 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:10 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:11 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:13 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:14 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:16 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:17 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:19 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:20 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:22 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:23 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:25 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:26 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:28 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:29 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:31 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:32 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:34 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:35 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:37 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:38 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:40 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:41 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:43 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:44 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:46 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:47 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:49 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:50 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:52 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:53 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:55 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:56 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:58 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:33:59 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:01 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:02 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:04 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:05 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:07 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:08 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:10 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:11 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:13 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:14 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:16 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:17 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:19 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:20 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:22 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:23 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:25 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:26 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:28 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:29 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:31 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:32 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:34 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:35 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:37 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:38 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:40 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:41 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:43 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:44 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:46 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:47 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:49 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:50 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:52 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:53 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:55 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:56 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:58 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:34:59 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:01 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:03 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:04 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:06 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:07 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:09 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:10 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:12 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:13 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:15 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:16 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:18 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:19 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:21 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:22 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:24 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:25 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:27 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:28 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:30 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:31 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:33 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:34 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:36 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:37 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:39 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:40 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:42 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:43 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:45 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:46 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:48 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:49 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:51 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:52 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:54 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:55 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:57 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:35:58 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:00 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:01 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:03 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:04 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:06 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:07 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:09 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:11 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:12 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:14 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:15 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:17 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:18 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:20 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:21 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:23 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:24 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:26 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:27 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:29 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:30 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:32 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:33 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:35 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:36 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:38 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:39 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:41 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:42 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:44 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:45 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:47 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:48 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:50 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:51 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:53 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:54 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:56 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:58 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:36:59 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:01 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:02 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:04 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:05 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:07 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:08 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:10 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:11 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:13 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:14 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:16 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:17 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:19 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:20 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:22 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:23 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:25 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:26 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:28 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:29 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:31 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:32 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:34 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:35 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:37 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:38 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:40 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:41 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:43 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:44 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:46 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:48 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:49 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:51 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:52 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:54 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:55 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:57 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:37:58 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:00 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:01 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:03 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:04 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:06 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:07 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:09 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:10 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:12 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:13 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:15 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:16 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:18 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:19 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:21 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:22 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:24 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:25 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:27 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:29 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:30 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:32 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:33 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:35 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:36 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:38 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:39 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:41 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:42 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:44 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:45 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:47 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:48 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:50 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:51 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:53 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:54 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:56 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:57 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:38:59 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:00 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:02 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:03 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:05 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:06 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:08 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:09 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:11 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:12 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:14 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:16 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:17 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:19 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:20 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:22 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:23 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:25 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:26 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:28 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:29 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:31 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:32 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:34 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:35 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:37 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:38 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:40 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:41 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:43 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:44 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:46 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:47 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:49 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:50 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:52 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:53 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:55 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:56 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:58 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:39:59 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:01 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:02 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:04 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:05 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:07 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:08 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:10 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:11 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:13 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:15 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:16 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:18 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:19 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:21 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:22 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:24 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:25 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:27 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:28 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:30 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:31 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:33 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:34 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:36 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:37 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:39 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:40 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:42 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:43 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:45 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:46 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:48 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:49 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:51 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:52 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:54 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:55 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:57 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:40:59 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:00 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:02 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:03 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:05 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:06 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:08 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:09 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:11 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:12 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:14 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:15 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:17 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:18 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:20 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:21 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:23 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:24 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:26 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:27 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:29 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:30 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:32 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:33 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:35 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:36 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:38 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:40 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:41 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:43 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:44 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:46 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:47 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:49 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:50 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:52 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:53 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:55 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:56 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:58 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:41:59 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:01 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:02 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:04 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:05 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:07 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:08 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:10 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:11 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:13 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:14 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:16 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:18 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:19 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:21 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:22 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:24 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:25 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:27 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:28 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:30 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:31 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:33 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:34 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:36 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:37 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:39 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:40 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:42 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:43 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:45 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:46 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:48 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:49 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:51 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:52 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:54 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:55 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:57 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:42:59 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:00 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:02 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:03 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:05 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:06 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:08 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:09 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:11 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:12 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:14 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:15 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:17 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:18 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:20 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:21 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:23 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:24 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:26 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:27 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:29 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:30 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:32 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:33 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:35 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:37 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:38 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:40 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:41 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:43 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:44 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:46 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:47 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:49 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:50 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:52 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:53 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:55 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:56 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:58 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:43:59 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:01 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:02 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:04 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:05 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:07 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:08 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:10 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:11 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:13 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:15 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:16 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:18 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:19 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:21 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:22 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:24 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:25 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:27 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:28 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:30 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:31 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:33 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:34 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:36 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:37 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:39 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:40 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:42 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:43 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:45 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:46 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:48 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:49 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:51 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:52 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:54 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:56 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:57 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:44:59 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:00 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:02 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:03 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:05 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:06 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:08 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:09 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:11 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:12 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:14 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:15 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:17 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:18 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:20 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:21 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:23 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:24 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:26 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:27 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:29 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:30 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:32 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:33 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:35 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:36 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:38 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:39 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:41 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:42 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:44 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:45 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:47 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:48 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:50 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:51 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:53 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:54 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:56 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:57 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:45:59 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:00 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:02 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:03 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:05 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:06 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:08 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:09 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:11 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:12 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:14 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:15 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:17 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:18 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:20 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:21 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:23 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:24 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:26 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:27 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:29 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:30 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:32 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:33 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:35 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:36 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:38 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:39 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:41 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:43 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:44 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:46 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:47 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:49 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:50 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:52 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:53 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:55 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:56 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:58 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:46:59 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:01 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:02 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:04 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:05 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:07 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:08 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:10 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:11 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:13 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:14 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:16 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:17 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:19 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:20 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:22 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:23 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:25 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:27 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:28 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:30 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:31 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:33 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:34 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:36 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:37 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:39 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:40 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:42 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:43 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:45 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:46 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:48 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:49 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:51 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:52 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:54 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:55 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:57 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:47:58 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:00 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:02 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:03 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:05 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:06 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:08 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:09 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:11 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:12 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:14 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:15 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:17 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:18 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:20 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:21 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:23 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:24 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:26 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:27 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:29 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:30 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:32 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:33 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:35 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:36 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:38 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:39 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:41 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:42 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:44 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:45 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:47 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:48 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:50 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:51 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:53 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:54 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:56 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:57 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:48:59 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:00 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:02 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:03 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:05 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:06 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:08 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:09 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:11 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:12 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:14 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:15 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:17 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:18 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:20 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:21 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:23 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:24 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:26 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:28 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:29 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:31 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:32 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:34 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:35 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:37 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:38 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:40 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:41 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:43 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:44 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:46 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:47 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:49 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:50 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:52 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:53 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:55 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:56 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:58 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:49:59 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:01 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:02 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:04 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:05 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:07 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:08 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:10 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:11 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:13 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:14 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:16 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:17 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:19 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:20 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:22 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:23 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:25 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:26 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:28 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:29 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:31 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:32 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:34 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:35 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:37 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:38 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:40 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:41 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:43 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:45 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:46 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:48 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:49 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:51 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:52 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:54 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:55 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:57 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:50:58 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:00 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:01 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:03 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:04 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:06 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:07 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:09 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:10 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:12 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:13 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:15 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:16 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:18 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:19 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:21 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:22 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:24 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:25 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:27 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:28 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:30 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:31 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:33 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:34 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:36 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:37 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:39 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:40 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:42 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:43 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:45 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:46 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:48 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:49 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:51 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:52 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:54 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:55 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:57 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:51:58 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:00 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:02 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:03 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:05 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:06 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:08 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:09 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:11 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:12 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:14 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:15 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:17 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:18 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:20 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:21 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:23 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:24 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:26 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:27 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:29 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:30 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:32 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:33 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:35 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:36 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:38 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:39 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:41 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:42 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:44 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:45 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:47 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:48 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:50 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:51 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:53 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:54 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:56 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:57 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:52:59 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:53:00 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:53:02 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:53:03 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:53:05 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:53:06 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:53:08 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:53:09 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:53:11 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:53:12 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:53:14 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:53:15 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:53:17 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:53:18 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:53:20 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:53:21 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:53:23 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:53:24 CEST 2017 - Invoked invitation with username=CIROO
|
||||
LOGGER (Client1): Mon Jun 19 18:53:37 CEST 2017 - Client starting ...
|
||||
LOGGER (Client1): Mon Jun 19 19:10:54 CEST 2017 - Client starting ...
|
||||
LOGGER (Client1): Mon Jun 19 19:15:45 CEST 2017 - Client starting ...
|
||||
LOGGER (Client1): Mon Jun 19 19:16:04 CEST 2017 - Client starting ...
|
||||
LOGGER (Client1): Mon Jun 19 19:16:23 CEST 2017 - Invoked invitation with username=ME|[a]
|
||||
LOGGER (Client1): Mon Jun 19 19:16:23 CEST 2017 - Invoked invitation with username=ME|[a]
|
||||
LOGGER (Client1): Mon Jun 19 19:24:12 CEST 2017 - Client starting ...
|
||||
LOGGER (Client1): Mon Jun 19 19:24:23 CEST 2017 - Client starting ...
|
||||
LOGGER (Client1): Mon Jun 19 19:24:25 CEST 2017 - Client starting ...
|
||||
LOGGER (Client1): Mon Jun 19 19:27:29 CEST 2017 - Client starting ...
|
||||
LOGGER (Client1): Mon Jun 19 19:27:31 CEST 2017 - Client starting ...
|
||||
LOGGER (Client1): Mon Jun 19 19:28:26 CEST 2017 - Client starting ...
|
||||
LOGGER (Client1): Mon Jun 19 19:29:43 CEST 2017 - Client starting ...
|
||||
LOGGER (Client1): Mon Jun 19 19:30:01 CEST 2017 - Client starting ...
|
||||
LOGGER (Client1): Mon Jun 19 19:30:13 CEST 2017 - Invoked invitation with username=a|[b]
|
||||
LOGGER (Client1): Mon Jun 19 19:30:13 CEST 2017 - Invoked invitation with username=a|[b]
|
||||
LOGGER (Client1): Mon Jun 19 19:30:13 CEST 2017 - a ti ha sfidato!
|
||||
LOGGER (Client1): Mon Jun 19 19:30:34 CEST 2017 - Client starting ...
|
||||
LOGGER (Client1): Mon Jun 19 19:30:52 CEST 2017 - Invoked invitation with username=c|[b, a]
|
||||
LOGGER (Client1): Mon Jun 19 19:30:52 CEST 2017 - c ti ha sfidato!
|
||||
LOGGER (Client1): Mon Jun 19 19:30:52 CEST 2017 - Invoked invitation with username=c|[b, a]
|
||||
LOGGER (Client1): Mon Jun 19 19:30:52 CEST 2017 - c ti ha sfidato!
|
||||
LOGGER (Client1): Mon Jun 19 19:30:52 CEST 2017 - Invoked invitation with username=c|[b, a]
|
||||
328
server.log
328
server.log
|
|
@ -1407,3 +1407,331 @@ LOGGER (Server): Mon Jun 19 02:42:23 CEST 2017 - Invoked register with username=
|
|||
LOGGER (Server): Mon Jun 19 02:42:23 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 02:42:26 CEST 2017 - Invoked login with username=asd AND password=asd
|
||||
LOGGER (Server): Mon Jun 19 02:42:26 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 15:36:15 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 15:36:15 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 15:36:15 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 15:36:15 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 15:36:18 CEST 2017 - Invoked register with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:36:18 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 15:36:33 CEST 2017 - Invoked register with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 15:36:33 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 15:36:36 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:36:36 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 15:36:54 CEST 2017 - Invoked login with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 15:36:54 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 15:37:04 CEST 2017 - Invoked logout with username=b AND token=50sihag9u9vfqm92ltj1fkhgj5
|
||||
LOGGER (Server): Mon Jun 19 15:37:04 CEST 2017 - Logout successfull
|
||||
LOGGER (Server): Mon Jun 19 15:38:16 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 15:38:17 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 15:38:17 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 15:38:17 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 15:38:20 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 15:38:21 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 15:38:21 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 15:38:21 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 15:38:30 CEST 2017 - Invoked register with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:38:30 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 15:38:32 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:38:45 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 15:38:48 CEST 2017 - Invoked logout with username=a AND token=7d8ohq6shdpdkcvuefcbjavb35
|
||||
LOGGER (Server): Mon Jun 19 15:39:04 CEST 2017 - Logout successfull
|
||||
LOGGER (Server): Mon Jun 19 15:39:32 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 15:39:32 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 15:39:32 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 15:39:32 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 15:39:33 CEST 2017 - Invoked register with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:39:33 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 15:39:35 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:39:35 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 15:39:36 CEST 2017 - Invoked logout with username=a AND token=6la9cfgcnvc79hqmr4mh44sji
|
||||
LOGGER (Server): Mon Jun 19 15:39:36 CEST 2017 - Logout successfull
|
||||
LOGGER (Server): Mon Jun 19 15:40:42 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 15:40:42 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 15:40:42 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 15:40:42 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 15:40:43 CEST 2017 - Invoked register with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:40:43 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 15:40:44 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:40:44 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 15:40:45 CEST 2017 - Invoked logout with username=a AND token=35kmtj7drp2p4a1rpmhlt5r5es
|
||||
LOGGER (Server): Mon Jun 19 15:40:45 CEST 2017 - Logout successfull
|
||||
LOGGER (Server): Mon Jun 19 15:42:49 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 15:42:49 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 15:42:49 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 15:42:49 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 15:42:50 CEST 2017 - Invoked register with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:42:50 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 15:42:52 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:42:52 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 15:42:52 CEST 2017 - Invoked logout with username=a AND token=aim15pau0r8vbu9anajcdb6o9q
|
||||
LOGGER (Server): Mon Jun 19 15:42:52 CEST 2017 - Logout successfull
|
||||
LOGGER (Server): Mon Jun 19 15:43:06 CEST 2017 - Invoked register with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 15:43:06 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 15:43:08 CEST 2017 - Invoked login with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 15:43:08 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 15:43:15 CEST 2017 - Invoked register with username=c AND password=c
|
||||
LOGGER (Server): Mon Jun 19 15:43:15 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 15:43:18 CEST 2017 - Invoked login with username=c AND password=c
|
||||
LOGGER (Server): Mon Jun 19 15:43:18 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 15:43:59 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:43:59 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 15:44:18 CEST 2017 - Invoked logout with username=a AND token=cp972q6r908aaa7383kabfumk3
|
||||
LOGGER (Server): Mon Jun 19 15:44:18 CEST 2017 - Logout successfull
|
||||
LOGGER (Server): Mon Jun 19 15:44:32 CEST 2017 - Invoked logout with username=c AND token=jg06u5vau6efus0vck85g9lo89
|
||||
LOGGER (Server): Mon Jun 19 15:44:32 CEST 2017 - Logout successfull
|
||||
LOGGER (Server): Mon Jun 19 15:46:13 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 15:46:13 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 15:46:13 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 15:46:13 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 15:46:16 CEST 2017 - Invoked register with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:46:16 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 15:46:19 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:46:19 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 15:46:20 CEST 2017 - Invoked logout with username=a AND token=iir7gvv3tp3mk1r7neqqs51sev
|
||||
LOGGER (Server): Mon Jun 19 15:46:20 CEST 2017 - Logout successfull
|
||||
LOGGER (Server): Mon Jun 19 15:46:34 CEST 2017 - Invoked register with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 15:46:34 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 15:46:35 CEST 2017 - Invoked login with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 15:46:35 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 15:46:37 CEST 2017 - Invoked logout with username=b AND token=27nkursealiv0244u6aomc9lh
|
||||
LOGGER (Server): Mon Jun 19 15:46:37 CEST 2017 - Logout successfull
|
||||
LOGGER (Server): Mon Jun 19 15:46:43 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:46:43 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 15:47:51 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 15:47:51 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 15:47:51 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 15:47:51 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 15:48:09 CEST 2017 - Invoked register with username=a AND password=
|
||||
LOGGER (Server): Mon Jun 19 15:48:10 CEST 2017 - Invoked register with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:48:10 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 15:48:12 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:48:12 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 15:48:15 CEST 2017 - Invoked register with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 15:48:15 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 15:48:19 CEST 2017 - Invoked login with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 15:48:19 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 15:48:38 CEST 2017 - Invoked logout with username=b AND token=svf00ctu4jgeo3c31r6uqd1n01
|
||||
LOGGER (Server): Mon Jun 19 15:48:38 CEST 2017 - Logout successfull
|
||||
LOGGER (Server): Mon Jun 19 15:51:02 CEST 2017 - Invoked register with username=c AND password=c
|
||||
LOGGER (Server): Mon Jun 19 15:51:02 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 15:51:34 CEST 2017 - Invoked login with username=c AND password=c
|
||||
LOGGER (Server): Mon Jun 19 15:51:34 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 15:54:09 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 15:54:09 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 15:54:09 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 15:54:09 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 15:54:14 CEST 2017 - Invoked register with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:54:14 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 15:54:16 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:54:16 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 15:54:23 CEST 2017 - Invoked register with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 15:54:23 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 15:54:25 CEST 2017 - Invoked login with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 15:54:25 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 15:54:58 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 15:54:58 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 15:55:15 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 15:55:15 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 15:55:15 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 15:55:15 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 15:55:19 CEST 2017 - Invoked register with username= AND password=
|
||||
LOGGER (Server): Mon Jun 19 15:55:21 CEST 2017 - Invoked register with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:55:21 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 15:55:23 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:55:23 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 15:55:45 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 15:55:46 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 15:55:55 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 15:55:56 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 15:55:56 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 15:55:56 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 15:56:14 CEST 2017 - Invoked register with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 15:56:14 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 15:56:19 CEST 2017 - Invoked register with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:56:19 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 15:56:21 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:56:21 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 15:56:23 CEST 2017 - Invoked login with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 15:56:23 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 15:57:38 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 15:57:38 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 15:57:38 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 15:57:38 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 15:57:43 CEST 2017 - Invoked logout with username=a AND token=plqvc57pdf6rukf4rs8m18nsba
|
||||
LOGGER (Server): Mon Jun 19 15:57:43 CEST 2017 - Logout successfull (but something gone wrong)
|
||||
LOGGER (Server): Mon Jun 19 15:57:47 CEST 2017 - Invoked register with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:57:47 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 15:57:49 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:57:49 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 15:57:51 CEST 2017 - Invoked logout with username=b AND token=dk4vfh528todl9eor94l34ofs0
|
||||
LOGGER (Server): Mon Jun 19 15:57:51 CEST 2017 - Logout successfull (but something gone wrong)
|
||||
LOGGER (Server): Mon Jun 19 15:57:54 CEST 2017 - Invoked register with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 15:57:54 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 15:57:58 CEST 2017 - Invoked login with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 15:57:58 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 15:58:07 CEST 2017 - Invoked logout with username=b AND token=clm728er1c4804djv42cjkl7sb
|
||||
LOGGER (Server): Mon Jun 19 15:58:07 CEST 2017 - Logout successfull
|
||||
LOGGER (Server): Mon Jun 19 15:59:40 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 15:59:40 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 15:59:40 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 15:59:40 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 15:59:50 CEST 2017 - Invoked register with username=a AND password=
|
||||
LOGGER (Server): Mon Jun 19 15:59:51 CEST 2017 - Invoked register with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:59:51 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 15:59:53 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 15:59:53 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 16:00:02 CEST 2017 - Invoked register with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 16:00:02 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 16:00:04 CEST 2017 - Invoked login with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 16:00:04 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 16:00:19 CEST 2017 - Invoked logout with username=b AND token=coc0lv6cj2jkb8iviv02ta5iar
|
||||
LOGGER (Server): Mon Jun 19 16:00:19 CEST 2017 - Logout successfull
|
||||
LOGGER (Server): Mon Jun 19 16:01:58 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 16:01:58 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 16:01:58 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 16:01:58 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 16:02:09 CEST 2017 - Invoked register with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 16:02:09 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 16:02:12 CEST 2017 - Invoked register with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 16:02:12 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 16:02:14 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 16:02:14 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 16:02:16 CEST 2017 - Invoked login with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 16:02:16 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 16:05:14 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 16:05:14 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 16:05:14 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 16:05:14 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 16:05:22 CEST 2017 - Invoked register with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 16:05:22 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 16:05:26 CEST 2017 - Invoked register with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 16:05:26 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 16:05:30 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 16:05:30 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 16:05:31 CEST 2017 - Invoked login with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 16:05:31 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 16:05:53 CEST 2017 - Invoked logout with username=b AND token=i79ks9t0tpism5rgkt6mo1te85
|
||||
LOGGER (Server): Mon Jun 19 16:05:53 CEST 2017 - Logout successfull
|
||||
LOGGER (Server): Mon Jun 19 16:08:43 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 16:08:43 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 16:08:43 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 16:08:43 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 16:08:53 CEST 2017 - Invoked register with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 16:08:53 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 16:08:54 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 16:08:54 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 16:09:58 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 16:09:58 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 16:10:52 CEST 2017 - Invoked register with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 16:10:52 CEST 2017 - Registration unsuccessfull
|
||||
LOGGER (Server): Mon Jun 19 16:10:55 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 16:10:55 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 16:32:38 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 16:32:38 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 16:32:38 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 16:32:38 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 16:32:44 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 16:32:44 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 16:40:43 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 16:40:43 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 16:40:52 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 16:40:52 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 16:40:52 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 16:40:52 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 16:50:44 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 16:50:44 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 16:50:44 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 16:50:44 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 16:51:00 CEST 2017 - Invoked register with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 16:51:00 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 16:51:02 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 16:51:02 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 18:19:31 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 18:19:31 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 18:19:31 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 18:30:25 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 18:30:25 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 18:30:25 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 18:31:47 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 18:31:47 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 18:31:47 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 18:53:34 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 18:53:34 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 18:53:34 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 19:09:43 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 19:09:43 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 19:09:43 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 19:09:43 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 19:10:49 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 19:10:49 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 19:10:49 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 19:10:49 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 19:15:39 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 19:15:39 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 19:15:39 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 19:15:39 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 19:15:56 CEST 2017 - Invoked register with username=dddd AND password=dddd
|
||||
LOGGER (Server): Mon Jun 19 19:15:56 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 19:15:59 CEST 2017 - Invoked login with username=dddd AND password=dddd
|
||||
LOGGER (Server): Mon Jun 19 19:15:59 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 19:16:08 CEST 2017 - Invoked register with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 19:16:08 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 19:16:10 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 19:16:10 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 19:24:03 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 19:24:03 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 19:24:03 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 19:24:03 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 19:24:51 CEST 2017 - Invoked register with username=ciro AND password=ciro
|
||||
LOGGER (Server): Mon Jun 19 19:24:51 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 19:25:00 CEST 2017 - Invoked register with username=ignazio AND password=ignazio
|
||||
LOGGER (Server): Mon Jun 19 19:25:00 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 19:25:11 CEST 2017 - Invoked register with username=pippo AND password=pippo
|
||||
LOGGER (Server): Mon Jun 19 19:25:11 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 19:25:16 CEST 2017 - Invoked login with username=ciro AND password=ciro
|
||||
LOGGER (Server): Mon Jun 19 19:25:16 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 19:25:20 CEST 2017 - Invoked login with username=ignazio AND password=ignazio
|
||||
LOGGER (Server): Mon Jun 19 19:25:20 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 19:25:25 CEST 2017 - Invoked login with username=pippo AND password=pippo
|
||||
LOGGER (Server): Mon Jun 19 19:25:25 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 19:26:07 CEST 2017 - Invoked logout with username=ignazio AND token=s2kuq8q2hd5hfa8qg29cqa060r
|
||||
LOGGER (Server): Mon Jun 19 19:26:07 CEST 2017 - Logout successfull
|
||||
LOGGER (Server): Mon Jun 19 19:26:07 CEST 2017 - Logout successfull (but something gone wrong)
|
||||
LOGGER (Server): Mon Jun 19 19:26:13 CEST 2017 - Invoked login with username=ignazio AND password=ignazio
|
||||
LOGGER (Server): Mon Jun 19 19:26:13 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 19:27:24 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 19:27:25 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 19:27:25 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 19:27:25 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 19:27:35 CEST 2017 - Invoked register with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 19:27:35 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 19:27:38 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 19:27:38 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 19:27:42 CEST 2017 - Invoked register with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 19:27:42 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 19:27:45 CEST 2017 - Invoked login with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 19:27:45 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 19:28:23 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 19:28:23 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 19:28:23 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 19:28:23 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 19:28:32 CEST 2017 - Invoked register with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 19:28:32 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 19:28:35 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 19:28:35 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 19:29:39 CEST 2017 - Server starting ...
|
||||
LOGGER (Server): Mon Jun 19 19:29:39 CEST 2017 - Auth Service running at 9999 port...
|
||||
LOGGER (Server): Mon Jun 19 19:29:39 CEST 2017 - Game Service is running at 10000 port...
|
||||
LOGGER (Server): Mon Jun 19 19:29:39 CEST 2017 - Server started
|
||||
LOGGER (Server): Mon Jun 19 19:29:47 CEST 2017 - Invoked register with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 19:29:47 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 19:29:49 CEST 2017 - Invoked login with username=a AND password=a
|
||||
LOGGER (Server): Mon Jun 19 19:29:49 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 19:30:06 CEST 2017 - Invoked register with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 19:30:06 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 19:30:09 CEST 2017 - Invoked login with username=b AND password=b
|
||||
LOGGER (Server): Mon Jun 19 19:30:09 CEST 2017 - Login successfull
|
||||
LOGGER (Server): Mon Jun 19 19:30:41 CEST 2017 - Invoked register with username=c AND password=c
|
||||
LOGGER (Server): Mon Jun 19 19:30:41 CEST 2017 - Registration successfull
|
||||
LOGGER (Server): Mon Jun 19 19:30:45 CEST 2017 - Invoked login with username=c AND password=c
|
||||
LOGGER (Server): Mon Jun 19 19:30:45 CEST 2017 - Login successfull
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue