FunkyBot/libs/BotLog.py

10 lines
202 B
Python
Raw Permalink Normal View History

2025-06-16 08:06:06 +00:00
from logging import FileHandler
class BotLog(FileHandler):
def __init__(self, filename="bot.log"):
super().__init__(filename=filename)
self.encoding='utf-8'
self.mode='w'