0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-29 02:02:38 +01:00

ircd::client: Tweak the loghead format.

This commit is contained in:
Jason Volk 2018-12-31 13:04:35 -08:00
parent c15a44f921
commit 11429bfff1

View file

@ -941,10 +941,10 @@ const
thread_local char locbuf[128];
return fmt::sprintf
{
buf, "socket:%lu client:%lu local[%s] remote[%s]",
buf, "socket:%lu local[%s] remote[%s] client:%lu",
sock? net::id(*sock) : -1UL,
id,
string(locbuf, ircd::local(*this)),
string(rembuf, ircd::remote(*this))
string(rembuf, ircd::remote(*this)),
id,
};
}