diff --git a/framework/contrib/tinyhttp/src/tinyhttp/http.C b/framework/contrib/tinyhttp/src/tinyhttp/http.C index 18ecc2e27cac..96e053e8b8c9 100644 --- a/framework/contrib/tinyhttp/src/tinyhttp/http.C +++ b/framework/contrib/tinyhttp/src/tinyhttp/http.C @@ -87,10 +87,10 @@ bool HttpRequest::parse(std::shared_ptr 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();