commit 8d19b20684dfaa51d474ec02584221f6b6084f0b from: Stefan Sperling via: Thomas Adam date: Sun Sep 07 11:52:56 2025 UTC remove some debug logging I added to gotwebd and forgot to remove commit - ea7963b95027594a330a01f1770fba059750944c commit + 8d19b20684dfaa51d474ec02584221f6b6084f0b blob - 76851f1abf7527257b6fb9ec2ba256983ade75e0 blob + 793a588456ed9f86c3ac6badbfa89a37ae01a37f --- gotwebd/gotweb.c +++ gotwebd/gotweb.c @@ -1501,7 +1501,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 - 29572c09c6b9b12145cca001b433ff270b0378a7 blob + 6c11500c28017faf5c420f93ef2f5bc3b166e9d0 --- gotwebd/sockets.c +++ gotwebd/sockets.c @@ -1001,7 +1001,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: @@ -1132,15 +1131,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; } @@ -1154,7 +1150,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: @@ -1213,7 +1208,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); }