From 17bb15014cf344bb24e0576b70cf535e89eb5b54 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Fri, 8 May 2020 17:11:33 +0200 Subject: Omit debug output --- plugins/fcgi/fcgi.cpp | 4 ++-- 1 file 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) { -- cgit v1.2.3