diff options
author | Omar Polo <op@omarpolo.com> | 2023-08-08 17:33:43 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2023-08-08 17:33:43 +0000 |
commit | 4f7492c36e5ae600b0e0ad2b2d271712d55e34b9 (patch) | |
tree | fda96ca2c009c01da50fdd4e195d7146be9dad5d /fcgi.c | |
parent | b27dc2b0a33b5087f2c505b82dcf2cc73208dcaa (diff) |
lower debug log priority
Diffstat (limited to 'fcgi.c')
-rw-r--r-- | fcgi.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -403,7 +403,8 @@ fcgi_req(struct client *c, struct location *loc) l--; if (!strncmp(scriptname, pathinfo, l)) pathinfo += l; - log_warnx("scriptname=%s ; pathinfo=%s", scriptname, pathinfo); + + log_debug("scriptname=%s ; pathinfo=%s", scriptname, pathinfo); fcgi_begin_request(c->cgibev); fcgi_send_param(c->cgibev, "GATEWAY_INTERFACE", "CGI/1.1"); |