From 39b12c5fc6dd8bb0d9b95081684eeb52216f7747 Mon Sep 17 00:00:00 2001 From: Jan Kneschke Date: Mon, 11 Jul 2005 11:00:23 +0000 Subject: [PATCH] be a bit more verbose for log-request-handling git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.3.x@439 152afb58-edef-0310-8abb-c4023f1b3aa9 --- src/mod_fastcgi.c | 8 ++++++++ 1 file changed, 8 insertions(+) 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 {