From cf0e2eb361797817b8463fda0a7e3ed796e0547b Mon Sep 17 00:00:00 2001 From: Salanto <62221668+Salanto@users.noreply.github.com> Date: Sat, 26 Mar 2022 17:28:07 +0100 Subject: [PATCH] Remove leftover qDebug() on websocket You really don't need to see the ip in your server console, do you now? --- core/src/ws_client.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/core/src/ws_client.cpp b/core/src/ws_client.cpp index 8f7b04f..e34440e 100644 --- a/core/src/ws_client.cpp +++ b/core/src/ws_client.cpp @@ -77,7 +77,6 @@ WSClient::WSClient(QTcpSocket *p_tcp_socket, QWebSocket *p_web_socket, QObject * else { websocket_ip = web_socket->peerAddress().toString(); } - qDebug() << websocket_ip; } WSClient::~WSClient()