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:
parent
c15a44f921
commit
11429bfff1
1 changed files with 3 additions and 3 deletions
|
@ -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,
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue