From cf2784df752095e7f81d4ea55ef6a7f1fb6224c4 Mon Sep 17 00:00:00 2001 From: Omar Polo Date: Wed, 9 Aug 2023 19:13:48 +0000 Subject: [PATCH] remove useless logging --- fcgi.c | 1 - 1 file changed, 1 deletion(-) diff --git a/fcgi.c b/fcgi.c index b8378d4..e681e1b 100644 --- a/fcgi.c +++ b/fcgi.c @@ -403,7 +403,6 @@ fcgi_req(struct client *c, struct location *loc) l--; if (!strncmp(scriptname, path, l) && (path[l] == '/' || path[l] == '\0')) { - log_warnx("in here! %zu %s", l, path); fcgi_send_param(c->cgibev, "PATH_INFO", &path[l]); path[l] = '\0'; fcgi_send_param(c->cgibev, "SCRIPT_NAME", path);