diff options
author | Prudence Au <prudence.au@amdocs.com> | 2019-09-12 18:08:00 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-09-12 18:08:00 +0000 |
commit | 4060b4c7955d7d7eb5352a1515a20fa2aa6a808a (patch) | |
tree | 2a54b3cbc9f32e57e4e1a296b6f2f78b598eb4eb /reference | |
parent | 335f5ec15c700f0c8fd21e0bed27885de51bb59d (diff) | |
parent | b23c87a20a2e240d84d19fb4ab4848a3bf921fbf (diff) |
Merge "Updated setTargetEntity to accept ONAPComponentsList interface"
Diffstat (limited to 'reference')
-rw-r--r-- | reference/logging-filter/logging-filter-base/src/main/java/org/onap/logging/filter/base/MDCSetup.java | 2 |
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()); } |