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

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