Made network.log output more verbose. 35/21935/3
authorMagnusen, Drew (dm741q) <dm741q@att.com>
Thu, 2 Nov 2017 20:41:48 +0000 (15:41 -0500)
committerMagnusen, Drew (dm741q) <dm741q@att.com>
Fri, 3 Nov 2017 14:09:30 +0000 (09:09 -0500)
Incoming values were not expanded in network logs for several
drools-applications. Current patch makes them more verbose.

Issue-ID: POLICY-410
Change-Id: I64bf88a3b39ea58dceaf24de698c8ae6a9a3f8b2
Signed-off-by: Magnusen, Drew (dm741q) <dm741q@att.com>
controlloop/common/guard/src/main/java/org/onap/policy/guard/PolicyGuardXacmlHelper.java
controlloop/common/model-impl/aai/src/main/java/org/onap/policy/aai/AAIManager.java
controlloop/common/model-impl/so/src/main/java/org/onap/policy/so/SOManager.java
controlloop/common/model-impl/vfc/src/main/java/org/onap/policy/vfc/VFCManager.java

index b24cc39..0703b76 100644 (file)
@@ -115,7 +115,7 @@ public class PolicyGuardXacmlHelper {
                                        .toString().getBytes()), urlEntry.restURL,
                                        urlEntry.authorization, urlEntry.clientAuth,
                                        urlEntry.environment);
-                       netLogger.info("[IN|{}{}|]{}{}", "GUARD", urlEntry.restURL, System.lineSeparator(), response);
+                       netLogger.info("[IN|{}|{}|]{}{}", "GUARD", urlEntry.restURL, System.lineSeparator(), response);
                } catch (Exception e) {
                        logger.error("Error in sending RESTful request: ", e);
                }
index e22fe00..c92ea77 100644 (file)
@@ -62,7 +62,7 @@ public final class AAIManager {
                if (httpDetails.b != null) {
                        try {
                                AAINQResponse response = Serialization.gsonPretty.fromJson(httpDetails.b, AAINQResponse.class);
-                               netLogger.info("[IN|{}|{}|]{}{}", "AAI", url, System.lineSeparator(), response.toString());
+                               netLogger.info("[IN|{}|{}|]{}{}", "AAI", url, System.lineSeparator(), httpDetails.b);
                                return response;
                        } catch (JsonSyntaxException e) {
                                logger.error("postQuery threw: ", e);
@@ -99,7 +99,7 @@ public final class AAIManager {
                        if (httpDetailsGet.a == 200) {
                                try {
                                        responseGet = Serialization.gsonPretty.fromJson(httpDetailsGet.b, AAIGETVserverResponse.class);
-                                       netLogger.info("[IN|{}|{}|]{}{}", "AAI", urlGet, System.lineSeparator(), responseGet.toString());
+                                       netLogger.info("[IN|{}|{}|]{}{}", "AAI", urlGet, System.lineSeparator(), httpDetailsGet.b);
                                        return responseGet;
                                } catch (JsonSyntaxException e) {
                                        logger.error("postQuery threw: ", e);
@@ -140,7 +140,7 @@ public final class AAIManager {
                        if (httpDetailsGet.a == 200) {
                                try {
                                        responseGet = Serialization.gsonPretty.fromJson(httpDetailsGet.b, AAIGETVnfResponse.class);
-                                       netLogger.info("[IN|{}|{}|]{}{}", "AAI", urlGet, System.lineSeparator(), responseGet.toString());
+                                       netLogger.info("[IN|{}|{}|]{}{}", "AAI", urlGet, System.lineSeparator(), httpDetailsGet.b);
                                        return responseGet;
                                } catch (JsonSyntaxException e) {
                                        logger.error("postQuery threw: ", e);
@@ -182,7 +182,7 @@ public final class AAIManager {
                        if (httpDetailsGet.a == 200) {
                                try {
                                        responseGet = Serialization.gsonPretty.fromJson(httpDetailsGet.b, AAIGETVnfResponse.class);
-                                       netLogger.info("[IN|{}|{}|]{}{}", "AAI", urlGet, System.lineSeparator(), responseGet.toString());
+                                       netLogger.info("[IN|{}|{}|]{}{}", "AAI", urlGet, System.lineSeparator(), httpDetailsGet.b);
                                        return responseGet;
                                } catch (JsonSyntaxException e) {
                                        logger.error("postQuery threw: ", e);
index 1caa045..6d78b64 100644 (file)
@@ -86,7 +86,7 @@ public final class SOManager {
                                        
                                        Pair<Integer, String> httpDetailsGet = RESTManager.get(urlGet, username, password, headers);
                                        responseGet = Serialization.gsonPretty.fromJson(httpDetailsGet.b, SOResponse.class);
-                                       netLogger.info("[IN|{}|{}|]{}{}", "SO", urlGet, System.lineSeparator(), responseGet.toString());
+                                       netLogger.info("[IN|{}|{}|]{}{}", "SO", urlGet, System.lineSeparator(), httpDetailsGet.b);
                     
                                        body = Serialization.gsonPretty.toJson(responseGet);
                                        logger.debug("***** Response to get:");
index 2ef9b3a..ebc3ad6 100644 (file)
@@ -94,8 +94,7 @@ public final class VFCManager implements Runnable {
         if (httpDetails.a == 202) {
             try {
                 VFCResponse response = Serialization.gsonPretty.fromJson(httpDetails.b, VFCResponse.class);
-                netLogger.info("[IN|{}|{}|]{}{}", "VFC", vfcUrl, System.lineSeparator(), response.toString());
-
+                netLogger.info("[IN|{}|{}|]{}{}", "VFC", vfcUrl, System.lineSeparator(), httpDetails.b);
                 String body = Serialization.gsonPretty.toJson(response);
                 logger.debug("Response to VFC Heal post:");
                 logger.debug(body);
@@ -111,7 +110,7 @@ public final class VFCManager implements Runnable {
                     netLogger.info("[OUT|{}|{}|]", "VFC", urlGet);
                     Pair<Integer, String> httpDetailsGet = RESTManager.get(urlGet, username, password, headers);
                     responseGet = Serialization.gsonPretty.fromJson(httpDetailsGet.b, VFCResponse.class);
-                    netLogger.info("[IN|{}|{}|]{}{}", "VFC", urlGet, System.lineSeparator(), responseGet.toString());
+                    netLogger.info("[IN|{}|{}|]{}{}", "VFC", urlGet, System.lineSeparator(), httpDetailsGet.b);
                     responseGet.requestId = vfcRequest.requestId.toString();
                     body = Serialization.gsonPretty.toJson(responseGet);
                     logger.debug("Response to VFC Heal get:");