aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrittany Plummer (bp896r) <bp896r@att.com>2019-09-12 12:24:38 -0400
committerBrittany Plummer (bp896r) <bp896r@att.com>2019-09-12 12:26:02 -0400
commitb23c87a20a2e240d84d19fb4ab4848a3bf921fbf (patch)
tree3da2502fbef93de4635bf0a1b83b4927cdf4763a
parente219ab7cc03e144c7217f639aec52921ab49d0d5 (diff)
Updated setTargetEntity to accept ONAPComponentsList interface
Issue-ID: LOG-1130 Change-Id: I8e69d64bef18589c9eabb785ab4671c265f517b9 Signed-off-by: Brittany Plummer (bp896r) <bp896r@att.com>
-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());
}