aboutsummaryrefslogtreecommitdiff
path: root/fcgi.c
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2023-08-08 17:33:43 +0000
committerOmar Polo <op@omarpolo.com>2023-08-08 17:33:43 +0000
commit4f7492c36e5ae600b0e0ad2b2d271712d55e34b9 (patch)
treefda96ca2c009c01da50fdd4e195d7146be9dad5d /fcgi.c
parentb27dc2b0a33b5087f2c505b82dcf2cc73208dcaa (diff)
lower debug log priority
Diffstat (limited to 'fcgi.c')
-rw-r--r--fcgi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fcgi.c b/fcgi.c
index 1874c85..7340aec 100644
--- a/fcgi.c
+++ b/fcgi.c
@@ -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");