Commit 24bf6067 authored by chenjianxing's avatar chenjianxing Committed by jianxing
Browse files

refactor: 场景资源池执行添加日志打印

parent 6935804a
Showing with 2 additions and 0 deletions
+2 -0
......@@ -149,6 +149,7 @@ public class JMeterService {
ResponseEntity<String> result = restTemplate.postForEntity(uri, request, String.class);
if (result == null || !StringUtils.equals("SUCCESS", result.getBody())) {
LogUtil.info(result.getBody());
RemakeReportService remakeReportService = CommonBeanFactory.getBean(RemakeReportService.class);
RunRequest runRequest = new RunRequest();
runRequest.setTestId(request.getTestId());
......@@ -158,6 +159,7 @@ public class JMeterService {
LoggerUtil.error("发送请求[ " + request.getTestId() + " ] 到" + uri + " 节点执行失败");
}
} catch (Exception e) {
LogUtil.error(e);
RemakeReportService remakeReportService = CommonBeanFactory.getBean(RemakeReportService.class);
RunRequest runRequest = new RunRequest();
runRequest.setTestId(request.getTestId());
......
Supports Markdown
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