0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-28 23:08:20 +02:00

ircd: Remove this warning message when everything is normal.

This commit is contained in:
Jason Volk 2017-11-25 19:25:35 -07:00
parent ae289de529
commit 366b0531a1

View file

@ -88,10 +88,13 @@ noexcept
{
interrupt();
if(request.active() || request.size())
if(request.active())
log::warning("Joining %zu active of %zu remaining request contexts...",
request.active(),
request.size());
else
log::debug("Waiting for %zu request contexts to join...",
request.size());
request.join();