Skip to content

Commit

Permalink
Remove extraneous output
Browse files Browse the repository at this point in the history
  • Loading branch information
loganharbour committed Apr 18, 2024
1 parent 6a80bee commit 10d0577
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions framework/contrib/tinyhttp/src/tinyhttp/http.C
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ bool HttpRequest::parse(std::shared_ptr<IClientStream> stream) {
path = path.substr(0, question);
}

if (query.empty())
std::cout << methodString << " " << path << std::endl;
else
std::cout << methodString << " " << path << " (Query: " << query << ")" << std::endl;
// if (query.empty())
// std::cout << methodString << " " << path << std::endl;
// else
// std::cout << methodString << " " << path << " (Query: " << query << ")" << std::endl;

while (true) {
std::string line = stream->receiveLine();
Expand Down

0 comments on commit 10d0577

Please sign in to comment.