From f5f5219b0645afd3efbab201b07358f1f5beb90e Mon Sep 17 00:00:00 2001 From: ackimixs Date: Mon, 15 Apr 2024 20:44:21 +0200 Subject: [PATCH] add log --- TCPServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TCPServer.cpp b/TCPServer.cpp index 6c0c982..d908f54 100644 --- a/TCPServer.cpp +++ b/TCPServer.cpp @@ -237,7 +237,7 @@ void TCPServer::handleMessage(const std::string& message, int clientSocket) else if (tokens[0] == "arduino" && tokens[2] == "set state") { this->isRobotMoving = TCPUtils::startWith(tokens[3], "0"); } - // std::cout << "Received: " << message << std::endl; + std::cout << "Received: " << message << std::endl; }