Commit b21d8e3aaebc4f60e05c22e1cc1b63e299c4a490

Authored by 潘钊
1 parent 51c2614b

迁移到 24

src/main/java/com/bsth/server_ws/park_station/CompanyServiceSoap.java
... ... @@ -88,12 +88,14 @@ public class CompanyServiceSoap implements CompanyService {
88 88 @WebMethod
89 89 public boolean getCurrentDayPlan(String ip, String userName, String password, String workId, String company, Holder<String[]> result, Holder<String> fError) {
90 90 try{
  91 + logger.info("getCurrentDayPlan userName: " + userName);
91 92 if(WebServiceProxy.personIsNew(company, workId)){
92 93  
93 94 List<ScheduleRealInfo> list = null;
94 95 try{
95 96 //从调度系统获取数据
96 97 list = ControlHttpUtils.getCurrentDayPlan(company, workId);
  98 + logger.info("从调度系统获取到数据 size: " + list.size());
97 99 }catch (Exception e){
98 100 //访问调度系统异常,尝试从数据库获取
99 101  
... ...