Browse Source

降低富锦推送时候的日志级别

pengdi@zoniot.com 4 năm trước cách đây
mục cha
commit
0d3302e8f3

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

@@ -295,9 +295,9 @@ public class DeviceDataPushServiceImpl implements DeviceDataPushService , Initia
 			String msg = JSON.toJSONString(postData);
 			try
 			{
-				log.info("begin post data , msg = " + msg);
+				log.debug("begin post data , msg = " + msg);
 				String resp = HttpClientUtils.doPostWithJson(this.pushUrl, msg);
-				log.info("end post data ,resp = " + resp);
+				log.debug("end post data ,resp = " + resp);
 			}
 			catch (Exception e)
 			{