commit bc417bb52082436bdd314ad59e5b4ce4d2455e8e
parent ed8fec0c1b1e3616abc3c058a931e268047a0b71
Author: default <nobody@localhost>
Date: Fri, 14 Oct 2022 08:47:52 +0200
Add the user agent to httpd start log line.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/httpd.c b/httpd.c
@@ -267,7 +267,7 @@ void httpd(void)
signal(SIGTERM, term_handler);
signal(SIGINT, term_handler);
- srv_log(xs_fmt("httpd start %s:%d", address, port));
+ srv_log(xs_fmt("httpd start %s:%d %s", address, port, USER_AGENT));
pthread_create(&htid, NULL, queue_thread, NULL);