How to wrap python logging module? – Telegram API
I would like to wrap the creation of a logger and all its associated configuration, formatters and handlers in a separate module, so that from my application I would just write: import my_logger test_logger = my_logger.getlogger("logger_name") This logger will be…