Compare commits

..

No commits in common. "1039a58d4f25c48dd68c0983ce73dfc8e5cb621f" and "8efd0fc99321cb9b42ed956d469ed8feb12830b9" have entirely different histories.

2 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit 3c2a863022e6656927b9360875695a6bcdc70ac9
Subproject commit 27289afd5e2d020cd9fcec62a682204a93688f25

View File

@ -331,7 +331,7 @@ class DatabaseOnReadyEvent(OnReadyABC):
self._logger.error(__name__, f"Cannot get UserJoinedVoiceChannel", e)
def _check_user_joined_gs(self):
self._logger.debug(__name__, f"Start checking UserJoinedGameServer table")
self._logger.debug(__name__, f"Start checking UserJoinedVoiceChannel table")
for guild in self._bot.guilds:
guild: discord.Guild = guild
@ -370,7 +370,7 @@ class DatabaseOnReadyEvent(OnReadyABC):
# todo: maybe add XP
self._db_context.save_changes()
except Exception as e:
self._logger.error(__name__, f"Cannot get UserJoinedGameServer", e)
self._logger.error(__name__, f"Cannot get UserJoinedVoiceChannel", e)
async def on_ready(self):
self._logger.debug(__name__, f"Module {type(self)} started")