откатываем изменения
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Pavel_Duron 2022-12-13 16:42:19 +10:00
parent e954ffcef5
commit 41c4b7c1c4

12
bot.py
View File

@ -9,26 +9,14 @@ 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())