aboutsummaryrefslogtreecommitdiffstats
path: root/ECOMP-REST/src/main/java/org/openecomp/policy/rest/jpa/TermList.java
diff options
context:
space:
mode:
Diffstat (limited to 'ECOMP-REST/src/main/java/org/openecomp/policy/rest/jpa/TermList.java')
-rw-r--r--ECOMP-REST/src/main/java/org/openecomp/policy/rest/jpa/TermList.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/ECOMP-REST/src/main/java/org/openecomp/policy/rest/jpa/TermList.java b/ECOMP-REST/src/main/java/org/openecomp/policy/rest/jpa/TermList.java
index ce94fb8d8..38bbf793a 100644
--- a/ECOMP-REST/src/main/java/org/openecomp/policy/rest/jpa/TermList.java
+++ b/ECOMP-REST/src/main/java/org/openecomp/policy/rest/jpa/TermList.java
@@ -125,7 +125,7 @@ public class TermList implements Serializable {
this.userModifiedBy = userModifiedBy;
}
- private static Log logger = LogFactory.getLog(TermList.class);
+ private static Log LOGGER = LogFactory.getLog(TermList.class);
public TermList() {
@@ -155,8 +155,7 @@ public class TermList implements Serializable {
try {
this.userModifiedBy =XacmlAdminAuthorization.getUserId();;
} catch (Exception e) {
- logger.error("Exception caused While adding Modified by Role"+e);
- // TODO:EELF Cleanup - Remove logger
+ LOGGER.error("Exception caused While adding Modified by Role"+e);
PolicyLogger.error(MessageCodes.EXCEPTION_ERROR, e, "TermList", "Exception caused While adding Modified by Role");
}
auditLogger.debug("Updated Term Name: "+this.termName+" by "+this.userModifiedBy);