(msg)
| 76 | _log_to_file("warning", msg) |
| 77 | |
| 78 | def error(msg): |
| 79 | if _current_log_level <= logging.ERROR: |
| 80 | console.print(f"[error]✗ {msg}[/error]") |
| 81 | _log_to_file("error", msg) |
| 82 | |
| 83 | def think(msg): |
| 84 | if _current_log_level <= logging.DEBUG: |
no test coverage detected