Added command history into client

This commit is contained in:
Carlos
2019-08-23 14:56:10 +02:00
parent 36f950f2c3
commit 13d374ec32
5 changed files with 27 additions and 4 deletions

View File

@ -68,7 +68,7 @@ public class WSServer extends WebSocketServer {
public void onClose(WebSocket conn, int code, String reason, boolean remote) {
LoginManager.getInstance().logOut(conn.getRemoteSocketAddress());
Bukkit.getLogger()
.info("[WebConsole] Closed WS connection " + conn.getRemoteSocketAddress() + ". Reason: " + reason);
.info("[WebConsole] Closed WS connection " + conn.getRemoteSocketAddress());
}
@Override