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