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

This commit is contained in:
hogweed1 2022-12-09 11:34:44 -05:00
parent 8864e1ce38
commit 92db050945

20
bot.py
View File

@ -9,27 +9,11 @@ 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( logging.basicConfig(
level = logging.DEBUG, level = logging.DEBUG,
handlers = [ graypy.GELFUDPHandler('localhost', 12201) ] 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())
pipisa.register_handlers_pipisa(dp) pipisa.register_handlers_pipisa(dp)
@ -42,7 +26,3 @@ sendnot.register_handlers_sendnotal(dp)
if __name__ == '__main__': if __name__ == '__main__':
executor.start_polling(dp, skip_updates=True) executor.start_polling(dp, skip_updates=True)