From bc417bb52082436bdd314ad59e5b4ce4d2455e8e Mon Sep 17 00:00:00 2001 From: default Date: Fri, 14 Oct 2022 08:47:52 +0200 Subject: [PATCH] Add the user agent to httpd start log line. --- httpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpd.c b/httpd.c index 9bfee12..60bd6f3 100644 --- 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);