Set the logs directory directly
(directory: str | Path)
| 332 | |
| 333 | |
| 334 | def set_log_base_directory(directory: str | Path): |
| 335 | """Set the logs directory directly""" |
| 336 | global LOG_BASE_DIR |
| 337 | LOG_BASE_DIR = Path(directory).resolve() |
| 338 | |
| 339 | |
| 340 | def set_static_mode(enabled: bool = True): |
no outgoing calls
no test coverage detected