From c8dc54f45073eb8551705d1e35bdf3f7b1f38433 Mon Sep 17 00:00:00 2001 From: O-sura Date: Fri, 26 Apr 2024 14:10:13 +0530 Subject: [PATCH] Added debug logs --- .../org/wso2/apk/integration/api/APIDeploymentSteps.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/apim-apk-agent-test/cucumber-tests/src/test/java/org/wso2/apk/integration/api/APIDeploymentSteps.java b/test/apim-apk-agent-test/cucumber-tests/src/test/java/org/wso2/apk/integration/api/APIDeploymentSteps.java index 5c28abc47..529051fcc 100644 --- a/test/apim-apk-agent-test/cucumber-tests/src/test/java/org/wso2/apk/integration/api/APIDeploymentSteps.java +++ b/test/apim-apk-agent-test/cucumber-tests/src/test/java/org/wso2/apk/integration/api/APIDeploymentSteps.java @@ -462,9 +462,9 @@ public void iHaveValidGraphQLDefinition() throws Exception { String multipartForm = new String(outputStream.toByteArray(), StandardCharsets.UTF_8); // Log the multipart form - logger.info("Multipart Form Data:\n{}"+ multipartForm); - logger.info("Validator URL: " + Utils.getGQLSchemaValidatorURL()); - logger.info("Publisher Token: " + sharedContext.getPublisherAccessToken()); + logger.debug("Multipart Form Data:\n{}"+ multipartForm); + logger.debug("Validator URL: " + Utils.getGQLSchemaValidatorURL()); + logger.debug("Publisher Token: " + sharedContext.getPublisherAccessToken()); HttpResponse response = sharedContext.getHttpClient().doPostWithMultipart(Utils.getGQLSchemaValidatorURL(), multipartEntity, headers);