diff --git a/linux/wpa-controller/WpaCommandStatus.cxx b/linux/wpa-controller/WpaCommandStatus.cxx index 98f9a6f8..fcecd7e8 100644 --- a/linux/wpa-controller/WpaCommandStatus.cxx +++ b/linux/wpa-controller/WpaCommandStatus.cxx @@ -1,6 +1,4 @@ -#include // TODO: remove me - #include #include #include @@ -10,7 +8,6 @@ using namespace Wpa; std::unique_ptr WpaCommandStatus::CreateResponseParser(const WpaCommand* command, std::string_view responsePayload) const { - std::cout << "WpaCommandStatus::CreateResponseParser() called\n"; return std::make_unique(command, responsePayload); } @@ -19,13 +16,10 @@ WpaStatusResponseParser::WpaStatusResponseParser(const WpaCommand* command, std: { ProtocolHostapd::ResponseStatusPropertyKeyState, WpaValuePresence::Required }, }) { - std::cout << "WpaStatusResponseParser::WpaStatusResponseParser() called\n"; } std::shared_ptr WpaStatusResponseParser::ParsePayload() { - std::cout << "WpaStatusResponseParser::ParsePayload() called\n"; - const auto properties = GetProperties(); const auto response = std::make_shared();