From fcba120dfa1100f71fda0cb82d29df91ff791a18 Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Wed, 18 Oct 2023 16:21:44 +0200 Subject: [PATCH] Minor: commented out unnecessary debug/info output --- ismas/ismas_client.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/ismas/ismas_client.cpp b/ismas/ismas_client.cpp index 3e78abb..e6475a7 100644 --- a/ismas/ismas_client.cpp +++ b/ismas/ismas_client.cpp @@ -56,6 +56,12 @@ void IsmasClient::printDebugMessage(int port, QString const &clientIP, int clientPort, QString const &message) { +#if 1 + Q_UNUSED(port); + Q_UNUSED(clientIP); + Q_UNUSED(clientPort); + Q_UNUSED(message); +#else qDebug().noquote() << "\n" << "SEND-REQUEST-RECEIVE-RESPONSE ..." << "\n" @@ -64,12 +70,19 @@ void IsmasClient::printDebugMessage(int port, << "local address ..." << clientIP << "\n" << "local port ......" << clientPort << "\n" << message; +#endif } void IsmasClient::printInfoMessage(int port, QString const &clientIP, int clientPort, QString const &message) { +#if 1 + Q_UNUSED(port); + Q_UNUSED(clientIP); + Q_UNUSED(clientPort); + Q_UNUSED(message); +#else qInfo().noquote() << "\n" << "SEND-REQUEST-RECEIVE-RESPONSE ..." << "\n" @@ -78,6 +91,7 @@ void IsmasClient::printInfoMessage(int port, << "local address ..." << clientIP << "\n" << "local port ......" << clientPort << "\n" << message; +#endif } void IsmasClient::printErrorMessage(int port,