乱码是因为没有设置文件格式,存在esc是因为颜色问题,阅读器无法渲染。解决配置如下 import re # 自定义formatter,匹配常见的ANSI转义序列,处理日志中的esc字符 class NoColorFormatter(logging.Formatter): def format(self, record): ansi_escape = re.compile(r'\x1B(?:[@-Z\\-_]|\[[0-?]*[ -/]*[@-~])') record.msg = ansi_esc…