aboutsummaryrefslogtreecommitdiffstats
path: root/aai-core/src
diff options
context:
space:
mode:
authorJames Forsyth <jf2512@att.com>2018-02-01 17:34:41 +0000
committerGerrit Code Review <gerrit@onap.org>2018-02-01 17:34:41 +0000
commit01a4f7035cbb6fe5c14d0caceaf28c0005118ca7 (patch)
treeaaca7f1de43f6a5ab0af8d27b152059f054d9ac1 /aai-core/src
parent7b1ebd04bf514fd9c011dd415b4992ea8beae1aa (diff)
parent543f09c33f50d043ba2246fce3954e393e16a26f (diff)
Merge "Fix in CNName"
Diffstat (limited to 'aai-core/src')
-rw-r--r--aai-core/src/main/java/org/onap/aai/logging/CNName.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/aai-core/src/main/java/org/onap/aai/logging/CNName.java b/aai-core/src/main/java/org/onap/aai/logging/CNName.java
index 7adbe87a..de5e99e5 100644
--- a/aai-core/src/main/java/org/onap/aai/logging/CNName.java
+++ b/aai-core/src/main/java/org/onap/aai/logging/CNName.java
@@ -23,6 +23,8 @@ package org.onap.aai.logging;
import ch.qos.logback.access.pattern.AccessConverter;
import ch.qos.logback.access.spi.IAccessEvent;
+import com.att.eelf.configuration.EELFLogger;
+import com.att.eelf.configuration.EELFManager;
import javax.security.auth.x500.X500Principal;
import javax.servlet.http.HttpServletRequest;
@@ -31,6 +33,7 @@ import java.security.cert.X509Certificate;
import static java.util.Base64.getDecoder;
public class CNName extends AccessConverter {
+ private static final EELFLogger LOGGER = EELFManager.getInstance().getLogger(CNName.class);
/**
* Converts access events to String response codes
@@ -83,7 +86,8 @@ public class CNName extends AccessConverter {
authUser = subjectDN.toString();
return authUser;
}
- } catch(Exception ex){
+ } catch(Exception e){
+ LOGGER.error(e.getMessage(),e);
return "-";
}
} else {