diff options
author | O'Connor, Lina (lo8949) <lo8949@us.att.com> | 2017-09-26 09:28:21 -0600 |
---|---|---|
committer | O'Connor, Lina (lo8949) <lo8949@att.com> | 2017-09-26 09:37:11 -0600 |
commit | 74da2543ab1a0e220e46745f3716d65a38e3c05a (patch) | |
tree | 82a11e3bcb4424576644435e9cc805a91bdb23cb | |
parent | ad02e6d2029203e53f26af2477e221c124d40e10 (diff) |
Logging Updates to a few files in the common repo.
Issue-ID: AAI-387
Change-Id: I304b9d4a50cb896ab3c638d986db8450c10e5427
Signed-off-by: O'Connor, Lina (lo8949) <lo8949@att.com>
-rw-r--r-- | aai-core/src/main/java/org/openecomp/aai/dmaap/AAIDmaapEventJMSConsumer.java | 6 | ||||
-rw-r--r-- | aai-core/src/main/java/org/openecomp/aai/logging/ErrorLogHelper.java | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/aai-core/src/main/java/org/openecomp/aai/dmaap/AAIDmaapEventJMSConsumer.java b/aai-core/src/main/java/org/openecomp/aai/dmaap/AAIDmaapEventJMSConsumer.java index 8acb954e..db72d63d 100644 --- a/aai-core/src/main/java/org/openecomp/aai/dmaap/AAIDmaapEventJMSConsumer.java +++ b/aai-core/src/main/java/org/openecomp/aai/dmaap/AAIDmaapEventJMSConsumer.java @@ -30,6 +30,9 @@ import org.json.JSONException; import org.json.JSONObject; import org.openecomp.aai.logging.ErrorLogHelper; import org.openecomp.aai.util.AAIConstants; +import org.openecomp.aai.logging.LoggingContext; +import org.openecomp.aai.logging.LoggingContext.LoggingField; +import org.openecomp.aai.logging.LoggingContext.StatusCode; import javax.jms.JMSException; import javax.jms.Message; @@ -103,6 +106,9 @@ public class AAIDmaapEventJMSConsumer implements MessageListener { LOGGER.info(eventName + "|" + aaiEvent); if ("AAI-EVENT".equals(eventName)) { this.sentWithHttp(this.httpClient, this.aaiEventUrl, aaiEvent); + } else { + LoggingContext.statusCode(StatusCode.ERROR); + LOGGER.error(eventName + "|Event Topic invalid."); } } catch (java.net.SocketException e) { if (!e.getMessage().contains("Connection reset")) { diff --git a/aai-core/src/main/java/org/openecomp/aai/logging/ErrorLogHelper.java b/aai-core/src/main/java/org/openecomp/aai/logging/ErrorLogHelper.java index 919029a0..23e4f606 100644 --- a/aai-core/src/main/java/org/openecomp/aai/logging/ErrorLogHelper.java +++ b/aai-core/src/main/java/org/openecomp/aai/logging/ErrorLogHelper.java @@ -581,7 +581,7 @@ public class ErrorLogHelper { .append(e.getMessage()) .toString(); - LoggingContext.responseCode(errorObject.getErrorCodeString()); + LoggingContext.responseCode(Integer.toString(errorObject.getHTTPResponseCode().getStatusCode())); LoggingContext.responseDescription(errorMessage); LoggingContext.statusCode(StatusCode.ERROR); |