Skip to content

Commit

Permalink
log method and body in arcgis request
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvaroVega committed Oct 10, 2023
1 parent f7d3916 commit 4558be0
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,9 @@ public static HttpResponse requestHTTP(String urlToRead, Map<String, String> par

try {
String strUrl = fullUrl(urlToRead, params);
LOGGER.debug("requesting HTTP: " + strUrl);
LOGGER.debug("requesting HTTP: " + strUrl +
"---METHOD: " + httpMethod.toString() +
"---BODY: " + body);

// Create a trust manager that does not validate certificate chains
TrustManager[] trustAllCerts = new TrustManager[] {new X509TrustManager() {
Expand Down

0 comments on commit 4558be0

Please sign in to comment.