feat(新功能):

fix(修复bug): 关闭调试日志打印
docs(文档变更):
refactor(重构):
test(增加测试):
This commit is contained in:
zhouchengrong
2025-01-10 15:09:59 +08:00
parent 72a8f3f920
commit f36edbe248
4 changed files with 4 additions and 4 deletions

View File

@@ -66,7 +66,7 @@ class Segmentation:
file_path = f"{SEG_CACHE_PATH}{image_id}.npy"
try:
np.save(file_path, seg_result)
logger.info(f"保存成功 {os.path.abspath(file_path)}")
logger.debug(f"保存成功 {os.path.abspath(file_path)}")
except Exception as e:
logger.error(f"保存失败: {e}")