From 10d05770c95b33733dd995adba1b725833a3508d Mon Sep 17 00:00:00 2001 From: Logan Harbour Date: Wed, 17 Apr 2024 19:58:37 -0600 Subject: [PATCH] Remove extraneous output refs #27401 --- framework/contrib/tinyhttp/src/tinyhttp/http.C | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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();