Print a dim phase indicator via the standard logger.
(label: str, pass_num: int, max_depth: int)
| 235 | |
| 236 | |
| 237 | def _log_phase(label: str, pass_num: int, max_depth: int) -> None: |
| 238 | """Print a dim phase indicator via the standard logger.""" |
| 239 | info(f"[Recursive] {label} ({pass_num}/{max_depth})") |
| 240 | |
| 241 | |
| 242 | # ── Main API ────────────────────────────────────────────────────────────────── |
no test coverage detected