From b3e7cec3793b9dfa2f740a58befc4afd5b0b082c Mon Sep 17 00:00:00 2001 From: cho Date: Fri, 16 Jan 2026 17:46:05 +0900 Subject: [PATCH] =?UTF-8?q?=EC=97=90=EB=9F=AC=EB=A1=9C=EA=B7=B8=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/eactive/eai/common/logger/EAILogDAO.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/eactive/eai/common/logger/EAILogDAO.java b/src/main/java/com/eactive/eai/common/logger/EAILogDAO.java index 08cc9b3..87fc0da 100644 --- a/src/main/java/com/eactive/eai/common/logger/EAILogDAO.java +++ b/src/main/java/com/eactive/eai/common/logger/EAILogDAO.java @@ -813,7 +813,7 @@ public class EAILogDAO { StatLog statLog = statLogMapper.toEntity(vo); statLogLogger.save(statLog); } catch (Exception e) { - logger.error("DB Logging[STATIC_LOG] Failed - " + vo.toString(), e); + //logger.error("DB Logging[STATIC_LOG] Failed - " + vo.toString(), e); throw new DAOException(ExceptionUtil.getErrorCode(e, "RECEAICLG003")); } } @@ -823,7 +823,7 @@ public class EAILogDAO { StatTranLog statTranLog = statTranLogMapper.toEntity(vo); statTranLogLogger.save(statTranLog); } catch (Exception e) { - logger.error("DB Logging[STATIC_TRANCD_LOG] Failed - " + vo.toString(), e); + //logger.error("DB Logging[STATIC_TRANCD_LOG] Failed - " + vo.toString(), e); throw new DAOException(ExceptionUtil.getErrorCode(e, "RECEAICLG003")); } } @@ -833,7 +833,7 @@ public class EAILogDAO { StatAdapterLog statAdapterLog = statAdapterLogMapper.toEntity(vo); statAdapterLogLogger.save(statAdapterLog); } catch (Exception e) { - logger.error("DB Logging[STATIC_ADAPTER_LOG] Failed - " + vo.toString(), e); + //logger.error("DB Logging[STATIC_ADAPTER_LOG] Failed - " + vo.toString(), e); throw new DAOException(ExceptionUtil.getErrorCode(e, "RECEAICLG003")); } }