mirror of
https://github.com/matrix-construct/construct
synced 2024-11-17 23:40:57 +01:00
ircd: Remove this warning message when everything is normal.
This commit is contained in:
parent
ae289de529
commit
366b0531a1
1 changed files with 4 additions and 1 deletions
|
@ -88,10 +88,13 @@ noexcept
|
||||||
{
|
{
|
||||||
interrupt();
|
interrupt();
|
||||||
|
|
||||||
if(request.active() || request.size())
|
if(request.active())
|
||||||
log::warning("Joining %zu active of %zu remaining request contexts...",
|
log::warning("Joining %zu active of %zu remaining request contexts...",
|
||||||
request.active(),
|
request.active(),
|
||||||
request.size());
|
request.size());
|
||||||
|
else
|
||||||
|
log::debug("Waiting for %zu request contexts to join...",
|
||||||
|
request.size());
|
||||||
|
|
||||||
request.join();
|
request.join();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue