( *msgs: str, level: int = logging.DEBUG, fg: str = 'white', bg: str | None = None, reset: bool = False, font: list[Font] = [], )
| 173 | |
| 174 | |
| 175 | def debug( |
| 176 | *msgs: str, |
| 177 | level: int = logging.DEBUG, |
| 178 | fg: str = 'white', |
| 179 | bg: str | None = None, |
| 180 | reset: bool = False, |
| 181 | font: list[Font] = [], |
| 182 | ) -> None: |
| 183 | log(*msgs, level=level, fg=fg, bg=bg, reset=reset, font=font) |
| 184 | |
| 185 | |
| 186 | def error( |
no test coverage detected