@@ -211,7 +211,7 @@ private <T> T submitGetRequest(final String url, final Map<String, String> getPa
211211 // Conditionally add content-type header?
212212 get .addHeader (new BasicHeader ("Content-Type" , "application/json" ));
213213
214- logger .info ("Executing request {}" , get .getRequestLine ());
214+ logger .debug ("Executing request {}" , get .getRequestLine ());
215215
216216 // Execute and return
217217 return httpClient .execute (get , responseHandler );
@@ -253,7 +253,7 @@ private <T> T submitPostRequest(final String url, final Object requestBody, fina
253253
254254 post .setEntity (new StringEntity (jsonPayloadStr ));
255255
256- logger .info ("Executing request {} with {}" , post .getRequestLine (), jsonPayloadStr );
256+ logger .debug ("Executing request {} with {}" , post .getRequestLine (), jsonPayloadStr );
257257
258258 // Execute and return
259259 return httpClient .execute (post , responseHandler );
@@ -292,7 +292,7 @@ private <T> T submitPutRequest(final String url, final Object requestBody, final
292292 final String jsonPayloadStr = JacksonFactory .newInstance ().writeValueAsString (requestBody );
293293 put .setEntity (new StringEntity (jsonPayloadStr ));
294294
295- logger .info ("Executing request {} with {}" , put .getRequestLine (), jsonPayloadStr );
295+ logger .debug ("Executing request {} with {}" , put .getRequestLine (), jsonPayloadStr );
296296
297297 // Execute and return
298298 return httpClient .execute (put , responseHandler );
@@ -336,7 +336,7 @@ private <T> T submitDeleteRequest(final String url, final Object requestBody, fi
336336 // Convert to Json
337337 final String jsonPayloadStr = JacksonFactory .newInstance ().writeValueAsString (requestBody );
338338
339- logger .info ("Executing request {} with {}" , delete .getRequestLine (), jsonPayloadStr );
339+ logger .debug ("Executing request {} with {}" , delete .getRequestLine (), jsonPayloadStr );
340340
341341 // Execute and return
342342 return httpClient .execute (delete , responseHandler );
0 commit comments