summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordefault <nobody@localhost>2022-10-14 08:47:52 +0200
committerdefault <nobody@localhost>2022-10-14 08:47:52 +0200
commitbc417bb52082436bdd314ad59e5b4ce4d2455e8e (patch)
tree93b630610315643bb70133ac2d9bd106cf19cb8d
parented8fec0c1b1e3616abc3c058a931e268047a0b71 (diff)
Add the user agent to httpd start log line.
-rw-r--r--httpd.c2
1 files changed, 1 insertions, 1 deletions
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);