fix(api): 移除冗余的接口返回日志输出

- 删除了重复打印接口返回数据和提交数据的日志语句
- 简化了异常捕获中的错误日志内容
- 优化日志信息,防止日志冗余和信息泄露
This commit is contained in:
danial
2025-11-14 00:57:35 +08:00
parent 2947beef22
commit ed8dd0c905

View File

@@ -66,7 +66,6 @@ class MasterNodeService:
},
timeout=30,
)
logger.info(f"接口返回数据:{response.text} 提交数据:{data}")
response_json = response.json()
except Exception as e:
logger.error(f"请求数据异常,{e}")