0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-02 18:18:56 +02:00

ircd::server: Minor log cleanup.

This commit is contained in:
Jason Volk 2019-04-24 15:25:23 -07:00
parent a831fd2957
commit d442327101

View file

@ -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
};