原始日志查询添加serverLocate和clientLocate两个字段

This commit is contained in:
zhangdongxu
2018-07-24 15:52:44 +08:00
parent 903a3c18b4
commit 87cc53670b
4 changed files with 91 additions and 17 deletions

View File

@@ -1233,11 +1233,11 @@ public class LogController extends BaseRestController {
auditLogThread.setExceptionInfo(e.getMessage() + " " + e.getCause());
logger.error(e);
if (!(e instanceof RestServiceException)) {
e = new RestServiceException(auditLogThread, System.currentTimeMillis() - start, "VOIP日志检索失败");
e = new RestServiceException(auditLogThread, System.currentTimeMillis() - start, "VOIP Account日志检索失败");
}
throw ((RestServiceException) e);
}
return serviceLogResponse(auditLogThread, System.currentTimeMillis() - start, request, "VOIP日志检索成功",
return serviceLogResponse(auditLogThread, System.currentTimeMillis() - start, request, "VOIP Account日志检索成功",
logPage, 0);
}