(self, record: logging.LogRecord)
| 142 | highlevel_format = " %(levelname)s |" |
| 143 | |
| 144 | def format(self, record: logging.LogRecord) -> str: |
| 145 | if record.levelno >= self.highlevel_limit: |
| 146 | record.highlevel = self.highlevel_format % record.__dict__ |
| 147 | else: |
| 148 | record.highlevel = "" |
| 149 | return super().format(record) |
| 150 | |
| 151 | |
| 152 | class Application(SingletonConfigurable): |
no outgoing calls
no test coverage detected