commit f17dbdbfb4e1e00cf8a8371add4a43caafc8516e from: Stefan Sperling date: Sun Sep 07 09:38:02 2025 UTC remove some debug logging I added to gotwebd and forgot to remove commit - 4fb828fbc1f23ea9aeee2a1b2d369aef96cb27b3 commit + f17dbdbfb4e1e00cf8a8371add4a43caafc8516e blob - d871db0ccd691ec62818bcca37d685f311e32482 blob + 0110849b3a6f7e927de2262f945532273047ca83 --- gotwebd/gotweb.c +++ gotwebd/gotweb.c @@ -1503,7 +1503,6 @@ gotweb_dispatch_server(int fd, short event, void *arg) c = recv_request(&imsg); if (c) { int request_id = c->request_id; - log_info("%u: %s: request %u", getpid(), __func__, c->request_id); if (gotweb_process_request(c) == -1) { log_warnx("request %u failed", request_id); blob - 0c92e34a59abbd18afc609df8ab37edb345a7a71 blob + 588e89ebf1f5bc154b7f43bcc788380f6768cbbe --- gotwebd/sockets.c +++ gotwebd/sockets.c @@ -991,7 +991,6 @@ read_fcgi_records(int fd, short events, void *arg) size_t record_len; n = read(fd, c->buf + c->buf_len, FCGI_RECORD_SIZE - c->buf_len); - log_info("%u: %s: request %u, read=%zd", getpid(), __func__, c->request_id, n); switch (n) { case -1: @@ -1122,15 +1121,12 @@ sockets_socket_accept(int fd, short event, void *arg) uint8_t *buf = NULL; socklen_t len; int s; - - log_info("%u: %s: %d clients", getpid(), __func__, client_cnt); backoff.tv_sec = 1; backoff.tv_usec = 0; if (event & EV_TIMEOUT) { event_add(&sock->ev, NULL); - log_info("%u: %s: timeout", getpid(), __func__); return; } @@ -1144,7 +1140,6 @@ sockets_socket_accept(int fd, short event, void *arg) case EINTR: case EWOULDBLOCK: case ECONNABORTED: - log_info("%u: %s: errno %d", getpid(), __func__, errno); event_add(&sock->ev, NULL); return; case EMFILE: @@ -1203,7 +1198,6 @@ sockets_socket_accept(int fd, short event, void *arg) evtimer_set(&c->tmo, request_timeout, c); evtimer_add(&c->tmo, &timeout); - log_info("%u: %s: add_request %d", getpid(), __func__, c->request_id); add_request(c); }