Skip to content

Commit

Permalink
added logging for when creating a channel
Browse files Browse the repository at this point in the history
  • Loading branch information
camalot committed Jun 27, 2024
1 parent a74231d commit 6611022
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bot/cogs/channel_creator.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,9 @@ async def on_voice_state_update(self, member, before, after):
userSettings = self.usersettings_db.get_user_settings(
guildId=guild_id, userId=channel_owner_id or member.id
)
self.log.debug(
guild_id, f"{self._module}.{self._class}.{_method}", f"User Settings: {json.dumps(userSettings.__dict__)}"
)
# self.log.debug(
# guild_id, f"{self._module}.{self._class}.{_method}", f"User Settings: {json.dumps(userSettings.__dict__)}"
# )
guildSettings = self.settings.db.get_guild_category_settings(
guildId=guild_id, categoryId=category_id
)
Expand Down

0 comments on commit 6611022

Please sign in to comment.