switched description

This commit is contained in:
Uwe Pfeifer 2023-01-01 14:14:23 +01:00
parent 0163a9f03a
commit 8abc27bc3a

View file

@ -9,8 +9,8 @@ from discord.ext import commands
import logging
# Logging
handler = logging.FileHandler(filename='bot.log', encoding='utf-8', mode='w')
discord.utils.setup_logging(handler=handler)
loghandler = logging.FileHandler(filename='bot.log', encoding='utf-8', mode='w')
discord.utils.setup_logging(handler=loghandler)
# logger = logging.getLogger('discord')
# logger.setLevel(logging.INFO)
@ -19,7 +19,7 @@ discord.utils.setup_logging(handler=handler)
# logger.addHandler(handler)
# The bots' description
description = '''Testing this bot stuff :)'''
description = '''Where does this appear?'''
# Intents
intents = discord.Intents.default()