From e4a07517fdc807192eb0c2f58fde7d3bd0c8a5d1 Mon Sep 17 00:00:00 2001
From: Jason Volk <jason@zemos.net>
Date: Wed, 19 Feb 2020 10:40:28 -0800
Subject: [PATCH] ircd: Remove explicit catch for http::error around main().

---
 ircd/ircd.cc | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/ircd/ircd.cc b/ircd/ircd.cc
index 18ab193e8..d4b0d3f37 100644
--- a/ircd/ircd.cc
+++ b/ircd/ircd.cc
@@ -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