修改:日志打印优化

This commit is contained in:
yangyang01000846
2026-01-20 20:05:38 +08:00
parent 59ae474678
commit a493acc013

View File

@@ -707,12 +707,13 @@ public class PbsServiceDecorator implements IPbsServiceDecorator {
}
private String uploadHpcFile(String filePath,String subDir){
Path path = Paths.get(filePath);
log.error("pbs上传求解文件{},{}",filePath,subDir);
try {
Path path = Paths.get(filePath);
String hpcFilePath = uploadFileInChunks(path, subDir);
return hpcFilePath;
} catch (Exception e) {
log.error("pbs上传求解文件异常{}",e.getMessage());
e.printStackTrace();
throw new RuntimeException("Hpc上传求解文件异常");
}
}