거래파일로그 기능 추가

- HTTP Inbound 거래도 출력되도록 수정
- HTTP Header 파일로그 추가
This commit is contained in:
curry772
2026-05-19 13:41:35 +09:00
parent 7b0699fdb9
commit 8d63586749
3 changed files with 64 additions and 42 deletions
@@ -72,6 +72,9 @@ public class HttpAdapterExtraLogUtil {
}
httpAdapterExtraLogVo.setHeaderList(headerVoList);
httpAdapterExtraLogVo.setHttpStatus(httpStatus);
logger.debug("[{}] Insert HTTP Log. - {}", guid, httpAdapterExtraLogVo);
if(ElinkConfig.isUseAsyncLogging()) {
AsyncHttpLoggingPoolManager.getInstance().publish(httpAdapterExtraLogVo);
} else {
@@ -4,9 +4,8 @@ import java.util.Properties;
public class TxFileLogger {
private static Logger siftLogger = Logger.getLogger(Logger.LOGGER_SIFT);
public static void logTxFile(Properties transactionProp, String message, String prefix) {
Logger siftLogger = Logger.getLogger(Logger.LOGGER_SIFT);
if (siftLogger.isInfoEnabled()) {
siftLogger.info(prefix + message);
if (siftLogger.isDebugEnabled())