10 lines
202 B
Python
10 lines
202 B
Python
|
|
from logging import FileHandler
|
||
|
|
|
||
|
|
|
||
|
|
class BotLog(FileHandler):
|
||
|
|
|
||
|
|
def __init__(self, filename="bot.log"):
|
||
|
|
super().__init__(filename=filename)
|
||
|
|
self.encoding='utf-8'
|
||
|
|
self.mode='w'
|