Removing duplicate logging of single response event 30/116630/1
authora.sreekumar <ajith.sreekumar@bell.ca>
Wed, 6 Jan 2021 14:09:26 +0000 (14:09 +0000)
committera.sreekumar <ajith.sreekumar@bell.ca>
Wed, 6 Jan 2021 14:09:33 +0000 (14:09 +0000)
Change-Id: I88c8f2eea9cb295e422d20222df21a46ef84cd4e
Issue-ID: POLICY-2885
Signed-off-by: a.sreekumar <ajith.sreekumar@bell.ca>
plugins/plugins-event/plugins-event-carrier/plugins-event-carrier-grpc/src/main/java/org/onap/policy/apex/plugins/event/carrier/grpc/ApexGrpcProducer.java

index 6046a31..410c83c 100644 (file)
@@ -1,7 +1,7 @@
 /*-
  * ============LICENSE_START=======================================================
  *  Copyright (C) 2020 Nordix Foundation.
- *  Modifications Copyright (C) 2020 Bell Canada. All rights reserved.
+ *  Modifications Copyright (C) 2020-2021 Bell Canada. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -125,8 +125,7 @@ public class ApexGrpcProducer extends ApexPluginsEventProducer implements CdsPro
         }
 
         if (!EventType.EVENT_COMPONENT_EXECUTED.equals(cdsResponse.get().getStatus().getEventType())) {
-            LOGGER.error("Sending event \"{}\" by {} to CDS failed. Response from CDS:\n{}", eventName, this.name,
-                cdsResponse.get());
+            LOGGER.error("Sending event \"{}\" by {} to CDS failed.", eventName, this.name);
         }
 
         consumeEvent(executionId, cdsResponse.get());
@@ -166,7 +165,6 @@ public class ApexGrpcProducer extends ApexPluginsEventProducer implements CdsPro
 
     @Override
     public void onMessage(ExecutionServiceOutput message) {
-        LOGGER.info("Received notification from CDS: {}", message);
         cdsResponse.set(message);
     }