diff options
author | 2020-04-28 01:37:59 +0200 | |
---|---|---|
committer | 2020-04-28 01:37:59 +0200 | |
commit | 288ec414f6cc67068a2ed91887bd29d24a82cdcd (patch) | |
tree | 68727560a068431403830c3f05708c2c03bbb4f6 | |
parent | Add option to ingore channels in help categories (diff) |
Log ID of member who claimed a help channel
-rw-r--r-- | bot/cogs/help_channels.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bot/cogs/help_channels.py b/bot/cogs/help_channels.py index 7aeaa2194..b5cb37015 100644 --- a/bot/cogs/help_channels.py +++ b/bot/cogs/help_channels.py @@ -694,6 +694,7 @@ class HelpChannels(Scheduler, commands.Cog): ) return + log.info(f"Channel #{channel} was claimed by `{message.author.id}`.") await self.move_to_in_use(channel) await self.revoke_send_permissions(message.author) # Add user with channel for dormant check. |