Forráskód Böngészése

屏蔽部分日志级别

lin 4 éve
szülő
commit
112ab3b75a

+ 2 - 2
smart-city-platform/src/main/java/com/bz/smart_city/commom/util/HttpClientUtils.java

@@ -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);

+ 2 - 2
smart-city-platform/src/main/java/com/bz/smart_city/service/impl/ChenHuiSyncWaterMeterInfoServiceImpl.java

@@ -54,9 +54,9 @@ public class ChenHuiSyncWaterMeterInfoServiceImpl implements SyncWaterMeterInfoS
 		String jsonReq = buildJSONRequestContent(fromDate,toDate);
 		String resp  = null ; 
 		try {
-			log.info("begin http request , url = {} , content = {}",batchQueryUrl,jsonReq);
+			log.debug("begin http request , url = {} , content = {}",batchQueryUrl,jsonReq);
 			resp = HttpClientUtils.doPostWithJson(batchQueryUrl, jsonReq);
-			log.info("end http request , url = {} , response = {}",batchQueryUrl,resp);
+			log.debug("end http request , url = {} , response = {}",batchQueryUrl,resp);
 			
 			
 		} catch (Exception e) {