Skip to content

Commit

Permalink
Added debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
O-sura committed Apr 29, 2024
1 parent adf0943 commit 2999cd0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 2999cd0

Please sign in to comment.