changed the logging a bit.

This commit is contained in:
Uwe Pfeifer 2022-11-11 22:46:24 +01:00
parent abadc6be04
commit 0180755b1f

View file

@ -9,11 +9,14 @@ from discord.ext import commands
import logging
# Logging
logger = logging.getLogger('discord')
logger.setLevel(logging.INFO)
handler = logging.FileHandler(filename='bot.log', encoding='utf-8', mode='w')
handler.setFormatter(logging.Formatter('%(asctime)s:%(levelname)s:%(name)s: %(message)s'))
logger.addHandler(handler)
discord.utils.setup_logging(handler=handler)
# logger = logging.getLogger('discord')
# logger.setLevel(logging.INFO)
# handler = logging.FileHandler(filename='bot.log', encoding='utf-8', mode='w')
# handler.setFormatter(logging.Formatter('%(asctime)s:%(levelname)s:%(name)s: %(message)s'))
# logger.addHandler(handler)
# The bots' description
description = '''Testing this bot stuff :)'''