에러로그 제거

This commit is contained in:
cho
2026-01-16 17:46:05 +09:00
parent b51053c086
commit b3e7cec379
@@ -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"));
}
}