We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1370871 commit 61abfa9Copy full SHA for 61abfa9
pydis_core/_bot.py
@@ -119,7 +119,10 @@ def _connect_statsd(
119
120
async def _load_extensions(self, module: types.ModuleType) -> None:
121
"""Load all the extensions within the given module and save them to ``self.all_extensions``."""
122
+ log.info("Waiting for guild %d to be avialable before loading extensions.", self.guild_id)
123
+
124
await self.wait_until_guild_available()
125
+ log.info("Loading extensions...")
126
self.all_extensions = walk_extensions(module)
127
128
for extension in self.all_extensions:
0 commit comments