This commit is contained in:
Simon Cruanes 2024-02-28 09:46:34 -05:00
parent bcc208cf59
commit 179d41cd9a
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4

View file

@ -312,9 +312,9 @@ let client_handle_for (self : t) ~client_addr ic oc : unit =
let msgf k =
let elapsed = B.get_time_s () -. req.start_time in
k
("response to=%s code=%d time=%.3fs path=%S" : _ format4)
("response to=%s code=%d time=%.3fs meth=%s path=%S" : _ format4)
(Util.show_sockaddr client_addr)
resp.code elapsed req.path
resp.code elapsed (Meth.to_string req.meth) req.path
in
if Response_code.is_success resp.code then
Log.info msgf