diff --git a/src/custom_robot.cpp b/src/custom_robot.cpp index ace16ac..f723717 100644 --- a/src/custom_robot.cpp +++ b/src/custom_robot.cpp @@ -148,11 +148,11 @@ bool CustomRobot::GetServiceList(std::vector& } LOG_INFO("Successfully retrieved service list with " + std::to_string(serviceList.size()) + " services"); - for (const auto& service : serviceList) { - std::string statusStr = (service.status == 1) ? "ACTIVE" : "INACTIVE"; - LOG_INFO("Service: " + service.name + " | Status: " + statusStr + " | Protect: " + - (service.protect ? "YES" : "NO")); - } + // for (const auto& service : serviceList) { + // std::string statusStr = (service.status == 1) ? "ACTIVE" : "INACTIVE"; + // LOG_INFO("Service: " + service.name + " | Status: " + statusStr + " | Protect: " + + // (service.protect ? "YES" : "NO")); + // } return true; } catch (const std::exception& e) {