udpate 打印日志

This commit is contained in:
Lemon
2024-03-20 08:18:00 +08:00
parent 065311cfa2
commit 3106fd7992
3 changed files with 23 additions and 6 deletions

View File

@@ -119,7 +119,7 @@ public class AMapUtils {
ResponseEntity<String> resp = restTemplate.postForEntity(API_URL, entity, String.class);
if (resp.getBody() != null && !"".equals(resp.getBody())) {
JSONObject respObj = JSONObject.parseObject(resp.getBody());
logger.info("高德返回结果:{}", respObj);
// logger.info("高德返回结果:{}", respObj);
// System.out.println("高德返回结果:" + respObj);
return JSONObject.toJSONString(respObj);
}