Coverage for /home/jonathan/pyClass/Camino/camino/logger/__init__.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.3.2, created at 2023-11-02 12:10 -0600

1""" 

2 This is the Logging module for the Camino application. 

3 

4 The log object exposed in this module is a singleton 

5 pattern to ensure only one loger will exist for all the modules to use. 

6 

7 The logging config file is camino/config/logger.yaml, the default log file 

8 is camino/camino.log. 

9 

10""" 

11from .logger_handler import _Logger 

12 

13log = _Logger()