set logger based on configuration file under working path.
(working_path:str)
| 41 | |
| 42 | |
| 43 | def set_logger(working_path:str): |
| 44 | '''set logger based on configuration file under working path.''' |
| 45 | logger = __config_logger(working_path) |
| 46 | set(KEY_LOGGER, logger) |
| 47 | |
| 48 | |
| 49 | def get_logger() -> logging.Logger: |
nothing calls this directly
no test coverage detected