Added more logging to narrrow down issue
[appc.git] / appc-dispatcher / appc-request-handler / appc-request-handler-core / src / main / java / org / onap / appc / requesthandler / impl / AbstractRequestHandlerImpl.java
index cd9011f..73c98e9 100644 (file)
@@ -395,7 +395,9 @@ public abstract class AbstractRequestHandlerImpl implements RequestHandler {
             logger.trace("Entering to postMessageToDMaaP with AsyncResponse = " +
                 ObjectUtils.toString(responseContext));
         }
+        logger.debug("In postMessageToDMaap before invoking post()");
         boolean callbackResponse = messageAdapter.post(operation, rpcName, responseContext);
+        logger.debug("In postMessageToDMaap after invoking post()");
         if (!callbackResponse) {
             logger.error("DMaaP posting status: false", "dmaapMessage: " + responseContext);
         }