0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-01-14 00:34:18 +01:00

ircd: Remove explicit catch for http::error around main().

This commit is contained in:
Jason Volk 2020-02-19 10:40:28 -08:00
parent 41c36836cc
commit e4a07517fd

View file

@ -312,13 +312,6 @@ noexcept try
// living on it.
ctx::wait();
}
catch(const http::error &e) // <-- m::error
{
log::critical
{
"IRCd main :%s %s", e.what(), e.content
};
}
catch(const std::exception &e)
{
log::critical