mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-25 14:35:04 +00:00
Add the user agent to httpd start log line.
This commit is contained in:
parent
ed8fec0c1b
commit
bc417bb520
1 changed files with 1 additions and 1 deletions
2
httpd.c
2
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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue