Test critical logging.
(self, logger)
| 227 | logger.error("Error message") |
| 228 | |
| 229 | def test_critical(self, logger): |
| 230 | """Test critical logging.""" |
| 231 | logger.critical("Critical message") |
| 232 | |
| 233 | def test_log_with_args(self, logger): |
| 234 | """Test logging with format arguments using f-string.""" |