Skip to content

Commit 08d60e4

Browse files
committed
Remove debug prints.
1 parent 7a50904 commit 08d60e4

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

linux/wpa-controller/WpaCommandStatus.cxx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11

2-
#include <iostream> // TODO: remove me
3-
42
#include <Wpa/ProtocolHostapd.hxx>
53
#include <Wpa/ProtocolWpa.hxx>
64
#include <Wpa/WpaCommandStatus.hxx>
@@ -10,7 +8,6 @@ using namespace Wpa;
108

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

@@ -19,13 +16,10 @@ WpaStatusResponseParser::WpaStatusResponseParser(const WpaCommand* command, std:
1916
{ ProtocolHostapd::ResponseStatusPropertyKeyState, WpaValuePresence::Required },
2017
})
2118
{
22-
std::cout << "WpaStatusResponseParser::WpaStatusResponseParser() called\n";
2319
}
2420

2521
std::shared_ptr<WpaResponse> WpaStatusResponseParser::ParsePayload()
2622
{
27-
std::cout << "WpaStatusResponseParser::ParsePayload() called\n";
28-
2923
const auto properties = GetProperties();
3024
const auto response = std::make_shared<WpaResponseStatus>();
3125

0 commit comments

Comments
 (0)