From 7a432662914a8dccfdb283140c70c8a2ddea80ba Mon Sep 17 00:00:00 2001 From: Uwe Pfeifer Date: Wed, 17 Aug 2022 00:26:34 +0200 Subject: [PATCH] Changed logfile to bot.log and added it to gitignore. --- .gitignore | 1 + pybot-f.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f303d6a..828cdab 100644 --- a/.gitignore +++ b/.gitignore @@ -234,6 +234,7 @@ fabric.properties botdev/ bot.ini pybot-f.log +bot.log diff --git a/pybot-f.py b/pybot-f.py index 7b7da4b..47925c7 100644 --- a/pybot-f.py +++ b/pybot-f.py @@ -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 :)'''