Write separator line
(self, char: str = "=", length: int = 100)
| 54 | return datetime.now().strftime('%Y-%m-%d %H:%M:%S.%f')[:-3] |
| 55 | |
| 56 | def _write_separator(self, char: str = "=", length: int = 100): |
| 57 | """Write separator line""" |
| 58 | self.logger.info(char * length) |
| 59 | |
| 60 | def _truncate_large_fields(self, data: Any, max_length: int = 200) -> Any: |
| 61 | """对大字段进行截断处理,特别是 base64 编码的图片数据 |
no outgoing calls
no test coverage detected