Skip to content

Commit

Permalink
Remove debug prints.
Browse files Browse the repository at this point in the history
  • Loading branch information
abeltrano committed Nov 22, 2023
1 parent 7a50904 commit 08d60e4
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions linux/wpa-controller/WpaCommandStatus.cxx
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@

#include <iostream> // TODO: remove me

#include <Wpa/ProtocolHostapd.hxx>
#include <Wpa/ProtocolWpa.hxx>
#include <Wpa/WpaCommandStatus.hxx>
Expand All @@ -10,7 +8,6 @@ using namespace Wpa;

std::unique_ptr<WpaResponseParser> WpaCommandStatus::CreateResponseParser(const WpaCommand* command, std::string_view responsePayload) const
{
std::cout << "WpaCommandStatus::CreateResponseParser() called\n";
return std::make_unique<WpaStatusResponseParser>(command, responsePayload);
}

Expand All @@ -19,13 +16,10 @@ WpaStatusResponseParser::WpaStatusResponseParser(const WpaCommand* command, std:
{ ProtocolHostapd::ResponseStatusPropertyKeyState, WpaValuePresence::Required },
})
{
std::cout << "WpaStatusResponseParser::WpaStatusResponseParser() called\n";
}

std::shared_ptr<WpaResponse> WpaStatusResponseParser::ParsePayload()
{
std::cout << "WpaStatusResponseParser::ParsePayload() called\n";

const auto properties = GetProperties();
const auto response = std::make_shared<WpaResponseStatus>();

Expand Down

0 comments on commit 08d60e4

Please sign in to comment.