diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-05-10 16:51:20 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-05-10 16:51:20 +0200 |
commit | 5b32a4415c9776dd6cae859c8d718b5e68f01d81 (patch) | |
tree | 9c9684367a1d415b1d836065daca2e8789fcd1a5 /plugins/fcgi | |
parent | eb7c96f1ee9cf3eff2dd86f2a1b6ea46a80e41c8 (diff) |
Move webbox to root to make index
Diffstat (limited to 'plugins/fcgi')
-rw-r--r-- | plugins/fcgi/fcgi.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/plugins/fcgi/fcgi.cpp b/plugins/fcgi/fcgi.cpp index f9d8a4d..a97f1c0 100644 --- a/plugins/fcgi/fcgi.cpp +++ b/plugins/fcgi/fcgi.cpp @@ -314,16 +314,6 @@ namespace { return status + " " + message; } - void DumpAppValues(const std::unordered_map<std::string, std::string>& app_values) - { - std::cout << "App properties:" << std::endl; - if (app_values.size() == 0) - std::cout << " (empty)" << std::endl; - else for (auto&[key, value]: app_values) { - std::cout << " " << key << "=" << value << std::endl; - } - } - } // anonymous namespace std::string fcgi_plugin::fcgiQuery(FCGIContext& context) @@ -448,7 +438,6 @@ 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); } else throw std::runtime_error("Unhandled FCGI type: "s + std::to_string(r.getType())); } catch (const std::length_error& ex) { |