diff options
author | default <nobody@localhost> | 2022-10-14 08:47:52 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2022-10-14 08:47:52 +0200 |
commit | bc417bb52082436bdd314ad59e5b4ce4d2455e8e (patch) | |
tree | 93b630610315643bb70133ac2d9bd106cf19cb8d /httpd.c | |
parent | ed8fec0c1b1e3616abc3c058a931e268047a0b71 (diff) |
Add the user agent to httpd start log line.
Diffstat (limited to 'httpd.c')
-rw-r--r-- | httpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |