0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-28 14:58:20 +02:00

ircd::client: Tweak log message format.

This commit is contained in:
Jason Volk 2018-10-24 19:06:35 -07:00
parent d65c22fd9f
commit 30d938530a

View file

@ -816,11 +816,11 @@ catch(const http::error &e)
log::derror
{
resource::log, "%s HTTP %u %s `%s' :%s",
resource::log, "%s HTTP %u `%s' %s :%s",
loghead(),
uint(e.code),
http::status(e.code),
head.uri,
http::status(e.code),
e.content
};