Test initialization with custom level.
(self)
| 126 | assert logger is not None |
| 127 | |
| 128 | def test_init_with_level(self): |
| 129 | """Test initialization with custom level.""" |
| 130 | logger = Logger(level="DEBUG") |
| 131 | assert logger is not None |
| 132 | |
| 133 | def test_init_with_log_file(self, temp_dir): |
| 134 | """Test initialization with log file.""" |