@@ -211,7 +211,7 @@ private <T> T submitGetRequest(final String url, final Map<String, String> getPa
211
211
// Conditionally add content-type header?
212
212
get .addHeader (new BasicHeader ("Content-Type" , "application/json" ));
213
213
214
- logger .info ("Executing request {}" , get .getRequestLine ());
214
+ logger .debug ("Executing request {}" , get .getRequestLine ());
215
215
216
216
// Execute and return
217
217
return httpClient .execute (get , responseHandler );
@@ -253,7 +253,7 @@ private <T> T submitPostRequest(final String url, final Object requestBody, fina
253
253
254
254
post .setEntity (new StringEntity (jsonPayloadStr ));
255
255
256
- logger .info ("Executing request {} with {}" , post .getRequestLine (), jsonPayloadStr );
256
+ logger .debug ("Executing request {} with {}" , post .getRequestLine (), jsonPayloadStr );
257
257
258
258
// Execute and return
259
259
return httpClient .execute (post , responseHandler );
@@ -292,7 +292,7 @@ private <T> T submitPutRequest(final String url, final Object requestBody, final
292
292
final String jsonPayloadStr = JacksonFactory .newInstance ().writeValueAsString (requestBody );
293
293
put .setEntity (new StringEntity (jsonPayloadStr ));
294
294
295
- logger .info ("Executing request {} with {}" , put .getRequestLine (), jsonPayloadStr );
295
+ logger .debug ("Executing request {} with {}" , put .getRequestLine (), jsonPayloadStr );
296
296
297
297
// Execute and return
298
298
return httpClient .execute (put , responseHandler );
@@ -336,7 +336,7 @@ private <T> T submitDeleteRequest(final String url, final Object requestBody, fi
336
336
// Convert to Json
337
337
final String jsonPayloadStr = JacksonFactory .newInstance ().writeValueAsString (requestBody );
338
338
339
- logger .info ("Executing request {} with {}" , delete .getRequestLine (), jsonPayloadStr );
339
+ logger .debug ("Executing request {} with {}" , delete .getRequestLine (), jsonPayloadStr );
340
340
341
341
// Execute and return
342
342
return httpClient .execute (delete , responseHandler );
0 commit comments