diff --git a/src/mod_fastcgi.c b/src/mod_fastcgi.c index 8316b0d2..fa4430f7 100644 --- a/src/mod_fastcgi.c +++ b/src/mod_fastcgi.c @@ -3058,6 +3058,10 @@ static handler_t fcgi_check_extension(server *srv, connection *con, void *p_d, i host->load++; con->mode = p->id; + + if (con->conf.log_request_handling) { + log_error_write(srv, __FILE__, __LINE__, "s", "handling it in mod_fastcgi"); + } } return HANDLER_GO_ON; } else { @@ -3079,6 +3083,10 @@ static handler_t fcgi_check_extension(server *srv, connection *con, void *p_d, i con->mode = p->id; + if (con->conf.log_request_handling) { + log_error_write(srv, __FILE__, __LINE__, "s", "handling it in mod_fastcgi"); + } + return HANDLER_FINISHED; } } else {