mirror of
https://github.com/matrix-construct/construct
synced 2024-11-26 08:42:34 +01:00
ircd::server: Minor log cleanup.
This commit is contained in:
parent
a831fd2957
commit
d442327101
1 changed files with 5 additions and 2 deletions
|
@ -424,7 +424,7 @@ try
|
|||
|
||||
return fmt::sprintf
|
||||
{
|
||||
buf, "tag[%lu] %s %s",
|
||||
buf, "tag:%lu %s %s",
|
||||
id(request),
|
||||
head.method,
|
||||
head.path
|
||||
|
@ -975,7 +975,7 @@ noexcept try
|
|||
{
|
||||
log::debug
|
||||
{
|
||||
log, "%s [%s] => [%u] done wt:%zu rt:%zu hr:%zu cr:%zu cl:%zu; %zu more in queue",
|
||||
log, "%s [%s] => [%u] done wt:%zu rt:%zu hr:%zu cr:%zu cl:%zu chunks:%zu %zu more in queue",
|
||||
loghead(link),
|
||||
tag.request?
|
||||
loghead(*tag.request):
|
||||
|
@ -986,6 +986,9 @@ noexcept try
|
|||
tag.state.head_read,
|
||||
tag.state.content_read,
|
||||
tag.state.content_length,
|
||||
tag.request?
|
||||
tag.request->in.chunks.size():
|
||||
0UL,
|
||||
link.tag_count() - 1
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue