|
@@ -110,7 +110,7 @@ public class HttpClientUtils {
|
|
|
}
|
|
|
|
|
|
public static String doPostWithJson(String url, String context) throws Exception {
|
|
|
- log.info("request url = {}, content = {}",url,context);
|
|
|
+ log.debug("request url = {}, content = {}",url,context);
|
|
|
HttpPost post = new HttpPost(url);
|
|
|
HttpEntity requestEntity = new StringEntity(context, ContentType.APPLICATION_JSON);
|
|
|
post.setEntity(requestEntity);
|
|
@@ -118,7 +118,7 @@ public class HttpClientUtils {
|
|
|
}
|
|
|
|
|
|
public static String doPostWithJsonWithHeader(String url, String context,String headerKey ,String headerValue) throws Exception {
|
|
|
- log.info("request url = {}, content = {}",url,context);
|
|
|
+ log.debug("request url = {}, content = {}",url,context);
|
|
|
HttpPost post = new HttpPost(url);
|
|
|
post.setHeader(headerKey,headerValue);
|
|
|
HttpEntity requestEntity = new StringEntity(context, ContentType.APPLICATION_JSON);
|