Log IRC errors, typically missing package
This commit is contained in:
parent
dd5a31d0f4
commit
8b34d1c134
@ -55,6 +55,8 @@ class IRC(LoggedClass):
|
|||||||
await self.join()
|
await self.join()
|
||||||
except asyncio.CancelledError:
|
except asyncio.CancelledError:
|
||||||
pass
|
pass
|
||||||
|
except Exception as e:
|
||||||
|
self.logger.error(str(e))
|
||||||
|
|
||||||
async def join(self):
|
async def join(self):
|
||||||
import irc.client as irc_client
|
import irc.client as irc_client
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user