添加日志

develop
guyuliang 2024-08-25 16:48:37 +08:00
parent e87fad1ecd
commit 30651c1200
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public class IndexServiceImpl implements IndexService {
JSONArray dataArray = JSONArray.parseArray(result);
return new GeneralResult(true, dataArray,"查询成功");
} catch (Exception e) {
log.info("查询失败");
log.info("查询失败",e);
return new GeneralResult(false, "查询失败");
}
}