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

ircd:Ⓜ️:room::state::space: Log a DWARNING on rebuild interruption.

This commit is contained in:
Jason Volk 2019-08-11 19:04:40 -07:00
parent a3f2f2082e
commit e7596fba96

View file

@ -3035,8 +3035,14 @@ ircd::m::room::state::space::rebuild::rebuild()
current = 0;
}
}
catch(const ctx::interrupted &)
catch(const ctx::interrupted &e)
{
log::dwarning
{
log, "room::state::space::rebuild :%s",
e.what()
};
break;
}
catch(const std::exception &e)