(log_path: Path, logs)
| 65 | return datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S') |
| 66 | |
| 67 | def _write_logs(log_path: Path, logs): |
| 68 | try: |
| 69 | log_path.parent.mkdir(parents=True, exist_ok=True) |
| 70 | with open(log_path, "w", encoding="utf-8") as f: |
| 71 | f.write("\n".join(logs)) |
| 72 | except Exception: |
| 73 | pass |
| 74 | |
| 75 | def _find_ui_header_logos(root: Path): |
| 76 | """Return list of Paths for UI header logos in order camel → tvg → waterloo. |
no outgoing calls
no test coverage detected