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 26, 2024
1 parent 1ed4819 commit c8dc54f
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 c8dc54f

Please sign in to comment.