()
| 52 | |
| 53 | |
| 54 | def test_formatter_without_name() -> None: |
| 55 | formatter = CrawleeLogFormatter(include_logger_name=False) |
| 56 | record = get_log_record(logging.INFO, 'Info message without name') |
| 57 | formatted_message = formatter.format(record) |
| 58 | assert formatted_message == '\x1b[32mINFO \x1b[0m Info message without name' |
nothing calls this directly
no test coverage detected