( *msgs: str, level: int = logging.INFO, fg: str = 'white', bg: str | None = None, reset: bool = False, font: list[Font] = [], )
| 162 | |
| 163 | |
| 164 | def info( |
| 165 | *msgs: str, |
| 166 | level: int = logging.INFO, |
| 167 | fg: str = 'white', |
| 168 | bg: str | None = None, |
| 169 | reset: bool = False, |
| 170 | font: list[Font] = [], |
| 171 | ) -> None: |
| 172 | log(*msgs, level=level, fg=fg, bg=bg, reset=reset, font=font) |
| 173 | |
| 174 | |
| 175 | def debug( |
no test coverage detected