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")); } }