Determine if this log line should be displayed
(self, line: str)
| 150 | return -1 |
| 151 | |
| 152 | def should_display(self, line: str) -> bool: |
| 153 | """Determine if this log line should be displayed""" |
| 154 | priority = self.parse_log_level(line) |
| 155 | |
| 156 | if priority >= self.min_level: |
| 157 | return True |
| 158 | return False |
| 159 | |
| 160 | def format_output(self, line: str) -> str: |
| 161 | """Format output""" |