diff --git a/src/main/java/com/eactive/eai/adapter/controller/DJBApiAdapterController.java b/src/main/java/com/eactive/eai/adapter/controller/DJBApiAdapterController.java index f041296..87cb7d6 100644 --- a/src/main/java/com/eactive/eai/adapter/controller/DJBApiAdapterController.java +++ b/src/main/java/com/eactive/eai/adapter/controller/DJBApiAdapterController.java @@ -22,7 +22,6 @@ import com.eactive.eai.adapter.AdapterVO; import com.eactive.eai.adapter.handler.AdapterErrorMessageHandler; import com.eactive.eai.adapter.handler.AdapterErrorMessageHandlerFactory; import com.eactive.eai.adapter.http.HttpStatusException; -import com.eactive.eai.adapter.http.client.HttpClientAdapterServiceKey; import com.eactive.eai.adapter.http.dynamic.HttpAdapterServiceKey; import com.eactive.eai.adapter.http.dynamic.HttpAdapterServiceSupport; import com.eactive.eai.adapter.http.dynamic.HttpDynamicInAdapterManager; @@ -223,14 +222,15 @@ public class DJBApiAdapterController implements HttpAdapterServiceKey { return null; } - // * manager 출력 - logger.warn("===== adptUriMap 상세 내용 ====="); - for (Map.Entry entry : manager.adptUriMap.entrySet()) { - HttpDynamicInAdapterUri uriObj = entry.getValue(); - logger.warn("GroupName=" + uriObj.getAdptGrpName() + ", AdapterName=" + uriObj.getAdptName() + ", URI=" - + uriObj.getUri()); + if(logger.isDebug()) { + logger.debug("===== adptUriMap 상세 내용 ====="); + for (Map.Entry entry : manager.adptUriMap.entrySet()) { + HttpDynamicInAdapterUri uriObj = entry.getValue(); + logger.debug("GroupName=" + uriObj.getAdptGrpName() + ", AdapterName=" + uriObj.getAdptName() + ", URI=" + + uriObj.getUri()); + } + logger.debug("================================"); } - logger.warn("================================"); // for (int i = 0; i < 10; i++) {