16 lines
429 B
Python
16 lines
429 B
Python
import logging
|
|
|
|
class TestingLogger:
|
|
"""
|
|
Testing logger.
|
|
"""
|
|
def __init__(self, name: str = 'test'):
|
|
self._logger = logging.getLogger(name)
|
|
self._logger.setLevel(logging.DEBUG)
|
|
self.d = self._logger.debug
|
|
self.i = self._logger.info
|
|
self.w = self._logger.warning
|
|
self.e = self._logger.error
|
|
self.f = self._logger.fatal
|
|
self.c = self._logger.critical
|