summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-05-08 17:11:33 +0200
committerRoland Reichwein <mail@reichwein.it>2020-05-08 17:11:33 +0200
commit17bb15014cf344bb24e0576b70cf535e89eb5b54 (patch)
treebb41bab1ad40c3a80ee26898434de4fe7d9d2999
parentcc2951cc43362a35a57731c9fa4c5a3e3c76f0de (diff)
Omit debug output
-rw-r--r--plugins/fcgi/fcgi.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/fcgi/fcgi.cpp b/plugins/fcgi/fcgi.cpp
index c990a52..bb0a8b4 100644
--- a/plugins/fcgi/fcgi.cpp
+++ b/plugins/fcgi/fcgi.cpp
@@ -369,7 +369,7 @@ std::string fcgi_plugin::fcgiQuery(FCGIContext& context)
socket->close(); // TODO: Bug workaround: Keeping socket open doesn't work for now
if (!socket->is_open()) {
- std::cout << "FCGI: Opening new socket" << std::endl;
+ //std::cout << "FCGI: Opening new socket" << std::endl;
socket->open();
opening = true;
@@ -449,7 +449,7 @@ std::string fcgi_plugin::fcgiQuery(FCGIContext& context)
std::cerr << "FCGI STDERR: " << r.getContent() << std::endl;
} else if (r.getType() == FCGI_GET_VALUES_RESULT) {
FCGI_DecodeEnv(r.getContent(), app_values);
- DumpAppValues(app_values);
+ //DumpAppValues(app_values);
} else
throw std::runtime_error("Unhandled FCGI type: "s + std::to_string(r.getType()));
} catch (const std::length_error& ex) {