mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 18:22:50 +01:00
ircd:Ⓜ️:room::state::space: Log a DWARNING on rebuild interruption.
This commit is contained in:
parent
a3f2f2082e
commit
e7596fba96
1 changed files with 7 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue