diff options
Diffstat (limited to 'plugins/fcgi/fcgi.cpp')
-rw-r--r-- | plugins/fcgi/fcgi.cpp | 4 |
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) { |