telegram_media_downloader/utils/log.py

16 lines
353 B
Python
Raw Normal View History

2020-12-31 21:27:41 +08:00
"""Util module to handle logs."""
import logging
class LogFilter(logging.Filter):
"""
Custom Log Filter.
Ignore logs from specific functions.
"""
# pylint: disable = W0221
def filter(self, log_record):
if log_record.funcName == "send" or log_record.funcName == "get_file":
return False
return True