(msg)
| 71 | _log_to_file("info", msg) |
| 72 | |
| 73 | def warning(msg): |
| 74 | if _current_log_level <= logging.WARNING: |
| 75 | console.print(f"[warning]⚠ {msg}[/warning]") |
| 76 | _log_to_file("warning", msg) |
| 77 | |
| 78 | def error(msg): |
| 79 | if _current_log_level <= logging.ERROR: |
no test coverage detected