diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/fcgi/fcgi.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/fcgi/fcgi.cpp b/plugins/fcgi/fcgi.cpp index 7748845..6f4ad1f 100644 --- a/plugins/fcgi/fcgi.cpp +++ b/plugins/fcgi/fcgi.cpp @@ -438,7 +438,9 @@ std::string fcgi_plugin::fcgiQuery(FCGIContext& context) } else if (r.getType() == FCGI_STDOUT) { output_data += r.getContent(); } else if (r.getType() == FCGI_STDERR) { - std::cerr << "FCGI STDERR: " << r.getContent() << std::endl; + std::string msg {r.getContent()}; + if (!msg.empty()) // final FCGI_STDERR sends empty message: ignore + std::cerr << "FCGI STDERR: " << msg << std::endl; } else if (r.getType() == FCGI_GET_VALUES_RESULT) { FCGI_DecodeEnv(r.getContent(), app_values); } else |