Commit 6b2cbe1cda2002108f8839dfc9a47108de4751cb
1 parent
0743fc80
update..
Showing
1 changed file
with
2 additions
and
2 deletions
src/main/java/com/bsth/data/gpsdata/thread/GpsDataLoaderThread.java
| ... | ... | @@ -154,7 +154,7 @@ public class GpsDataLoaderThread extends Thread { |
| 154 | 154 | CloseableHttpResponse response = null; |
| 155 | 155 | |
| 156 | 156 | try { |
| 157 | - logger.error("load start..."); | |
| 157 | + logger.info("load start..."); | |
| 158 | 158 | httpClient = HttpClients.createDefault(); |
| 159 | 159 | HttpGet get = new HttpGet(clientUrl); |
| 160 | 160 | //超时时间 |
| ... | ... | @@ -175,7 +175,7 @@ public class GpsDataLoaderThread extends Thread { |
| 175 | 175 | |
| 176 | 176 | list = JSON.parseArray(stringBuffer.toString(), GpsEntity.class); |
| 177 | 177 | String nbbm; |
| 178 | - logger.error("load end!"); | |
| 178 | + logger.info("load end!"); | |
| 179 | 179 | for (GpsEntity gps : list) { |
| 180 | 180 | |
| 181 | 181 | //没有设备号 | ... | ... |