From a493acc013b4590a9d5702a26e2cc26e72aa5184 Mon Sep 17 00:00:00 2001 From: yangyang01000846 <15195822163@163.com> Date: Tue, 20 Jan 2026 20:05:38 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=EF=BC=9A=E6=97=A5=E5=BF=97?= =?UTF-8?q?=E6=89=93=E5=8D=B0=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/sdm/pbs/service/impl/PbsServiceDecorator.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pbs/src/main/java/com/sdm/pbs/service/impl/PbsServiceDecorator.java b/pbs/src/main/java/com/sdm/pbs/service/impl/PbsServiceDecorator.java index d39a58a6..6b59c48a 100644 --- a/pbs/src/main/java/com/sdm/pbs/service/impl/PbsServiceDecorator.java +++ b/pbs/src/main/java/com/sdm/pbs/service/impl/PbsServiceDecorator.java @@ -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上传求解文件异常"); } }