Exemplo n.º 1
0
 def format(self, record: logging.LogRecord) -> str:
     record.extra = _format_extra(record)  # type: ignore
     return super().format(record)
Exemplo n.º 2
0
 def format(self, record: logging.LogRecord) -> str:
     self._format_args(record)
     record.extra = _format_extra(record)  # type: ignore
     return cast(str, super().format(record))
 def format(self, record: logging.LogRecord) -> str:
     self._format_args(record)
     record.extra = _format_extra(record)
     return super().format(record)