diff options
-rw-r--r-- | bot/cogs/logging.py | 6 | ||||
-rw-r--r-- | bot/constants.py | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/bot/cogs/logging.py b/bot/cogs/logging.py index 34c06909c..56107ee27 100644 --- a/bot/cogs/logging.py +++ b/bot/cogs/logging.py @@ -2,6 +2,8 @@ from discord import Message from discord.ext.commands import AutoShardedBot +from bot.constants import DEVLOG_CHANNEL + class Logging: """ @@ -12,7 +14,9 @@ class Logging: self.bot = bot async def on_ready(self): - print("Henlo online!") + print("Connected!") + + await self.bot.get_channel(DEVLOG_CHANNEL).send("Connected!") async def on_message(self, message: Message): if not message.guild: # It's a DM diff --git a/bot/constants.py b/bot/constants.py index 97f47f49a..59f500403 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -1,6 +1,7 @@ # coding=utf-8 +DEVLOG_CHANNEL = 409308876241108992 VERIFICATION_CHANNEL = 352442727016693763 ADMIN_ROLE = 267628507062992896 |