Commit e3f34475 authored by wujiang's avatar wujiang

提交代码

parent dc279d18
...@@ -321,7 +321,7 @@ public class TestController extends BaseController { ...@@ -321,7 +321,7 @@ public class TestController extends BaseController {
try { try {
Systemctl.smsClient.sendCommonSms(params1).getResult(); Systemctl.smsClient.sendCommonSms(params1).getResult();
} catch (Exception e) { } catch (Exception e) {
log.error(e.getMessage(),e); e.printStackTrace();
} }
HashMap<String, String> params = new HashMap<>(6); HashMap<String, String> params = new HashMap<>(6);
...@@ -334,13 +334,13 @@ public class TestController extends BaseController { ...@@ -334,13 +334,13 @@ public class TestController extends BaseController {
try { try {
Systemctl.smsClient.sendCommonSms(params).getResult(); Systemctl.smsClient.sendCommonSms(params).getResult();
} catch (Exception e) { } catch (Exception e) {
log.error(e.getMessage(),e); e.printStackTrace();
} }
params.put("smsCode", maintenanceCode); params.put("smsCode", maintenanceCode);
try { try {
Systemctl.smsClient.sendCommonSms(params).getResult(); Systemctl.smsClient.sendCommonSms(params).getResult();
} catch (Exception e) { } catch (Exception e) {
log.error(e.getMessage(),e); e.printStackTrace();
} }
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment