0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-28 16:34:13 +01:00

ircd::ctx: Make this a critical error.

This commit is contained in:
Jason Volk 2019-04-24 16:05:01 -07:00
parent bd37abb14b
commit eaec5cb65e

View file

@ -251,9 +251,9 @@ try
alarm.cancel();
return true;
}
catch(const boost::system::system_error &e)
catch(const std::exception &e)
{
log::error
log::critical
{
log, "ctx::wake(%p): %s", this, e.what()
};