Revert "Изменил(а) на 'bot.py'"

This reverts commit 92db050945.
This commit is contained in:
Pavel_Duron 2022-12-13 16:34:55 +10:00
parent 751bda0681
commit e954ffcef5

20
bot.py
View File

@ -9,11 +9,27 @@ from othersq import sendnot
class TagFilter(logging.Filter):
def __init__(self):
self.tag = 'jack_bot'
def filter(self, record):
record.tag = self.tag
return True
logging.basicConfig(
level = logging.DEBUG,
handlers = [ graypy.GELFUDPHandler('localhost', 12201) ]
)
( logging.getLogger( ) ).addFilter(TagFilter())
#logging.LoggerAdapter(logging.getLogger( ), {'tag': 'jack_bot'})
#root_logger = logging.getLogger( )
#handler = graypy.GELFUDPHandler('localhost', 12201)
#root_logger.addHandler(handler)
#root_logger.addFilter(TagFilter())
@ -27,3 +43,7 @@ sendnot.register_handlers_sendnotal(dp)
if __name__ == '__main__':
executor.start_polling(dp, skip_updates=True)