diff --git a/src/main/java/geoinfo/com/WebConfirm.java b/src/main/java/geoinfo/com/WebConfirm.java index 21ce71c9..78ee9ac7 100644 --- a/src/main/java/geoinfo/com/WebConfirm.java +++ b/src/main/java/geoinfo/com/WebConfirm.java @@ -468,7 +468,7 @@ public class WebConfirm String fract = isnull(rs.getString("DSF_FRACTURING"), "미입력"); int count = rs.getInt("COUNT"); - errorMessages.append("- " + holeCode + " 시추공의 불연속면 데이터(심도:" + dFrom + "~" + dTo + "m, 구성:" + decomp + ", 강도:" + strength + ", 간격:" + fract + ")가 " + count + "개 중복됨.\\n"); + errorMessages.append("- " + holeCode + " 시추공의 DSF(불연속면) 데이터 (심도:" + dFrom + "~" + dTo + "m, 구성:" + decomp + ", 강도:" + strength + ", 간격:" + fract + ")가 " + count + "개 중복됨.\\n"); } if (errorMessages.length() > 0) { @@ -482,7 +482,7 @@ public class WebConfirm } catch (SQLException e) { logger.error("DSF validation check error", e); result.put("success", false); - result.put("errorMessage", "불연속면 유효성 검사 중 데이터베이스 오류가 발생했습니다: " + e.getMessage()); + result.put("errorMessage", "DSF(불연속면) 유효성 검사 중 데이터베이스 오류가 발생했습니다: " + e.getMessage()); } finally { try { if (rs != null) rs.close();