(self, record)
| 128 | """ |
| 129 | |
| 130 | def format(self, record): |
| 131 | parts = record.name.split(".") |
| 132 | record.legacy_prefix = ( |
| 133 | f"{'.'.join(parts[1:])}: " if len(parts) > 1 else "" |
| 134 | ) |
| 135 | return super().format(record) |
| 136 | |
| 137 | |
| 138 | class StrFormatLogger(Logger): |