Changed logfile to bot.log and added it to gitignore.

This commit is contained in:
Uwe Pfeifer 2022-08-17 00:26:34 +02:00
parent 5a2743f875
commit 7a43266291
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View file

@ -234,6 +234,7 @@ fabric.properties
botdev/
bot.ini
pybot-f.log
bot.log

View file

@ -9,7 +9,7 @@ from discord.ext import commands
import logging
# Logging
loghandler = logging.FileHandler(filename='pybot-f.log', encoding='utf-8', mode='w')
loghandler = logging.FileHandler(filename='bot.log', encoding='utf-8', mode='w')
# The bots' description
description = '''Testing this bot stuff :)'''