Print a horizontal rule to the console without logging to file.
(self, color: str | None = None)
| 898 | print(message) |
| 899 | |
| 900 | def rule(self, color: str | None = None) -> None: |
| 901 | """Print a horizontal rule to the console without logging to file.""" |
| 902 | if self.pretty and self._console: |
| 903 | self._console.print(Rule(style=color or self._PAL_GREEN)) |
| 904 | |
| 905 | def event( |
| 906 | self, |