aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPrudence Au <prudence.au@amdocs.com>2019-09-12 18:08:00 +0000
committerGerrit Code Review <gerrit@onap.org>2019-09-12 18:08:00 +0000
commit4060b4c7955d7d7eb5352a1515a20fa2aa6a808a (patch)
tree2a54b3cbc9f32e57e4e1a296b6f2f78b598eb4eb
parent335f5ec15c700f0c8fd21e0bed27885de51bb59d (diff)
parentb23c87a20a2e240d84d19fb4ab4848a3bf921fbf (diff)
Merge "Updated setTargetEntity to accept ONAPComponentsList interface"
-rw-r--r--reference/logging-filter/logging-filter-base/src/main/java/org/onap/logging/filter/base/MDCSetup.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/reference/logging-filter/logging-filter-base/src/main/java/org/onap/logging/filter/base/MDCSetup.java b/reference/logging-filter/logging-filter-base/src/main/java/org/onap/logging/filter/base/MDCSetup.java
index cc31c4f..93c16a8 100644
--- a/reference/logging-filter/logging-filter-base/src/main/java/org/onap/logging/filter/base/MDCSetup.java
+++ b/reference/logging-filter/logging-filter-base/src/main/java/org/onap/logging/filter/base/MDCSetup.java
@@ -177,7 +177,7 @@ public class MDCSetup {
MDC.put(ONAPLogConstants.MDCs.RESPONSE_STATUS_CODE, statusCode);
}
- public void setTargetEntity(ONAPComponents targetEntity) {
+ public void setTargetEntity(ONAPComponentsList targetEntity) {
MDC.put(ONAPLogConstants.MDCs.TARGET_ENTITY, targetEntity.toString());
}