- adminAccessLogService 改为 systemAccessLogService

This commit is contained in:
sin 2019-05-23 09:45:42 +08:00
parent c7a4a90a69
commit f70d982047
2 changed files with 4 additions and 4 deletions

View File

@ -42,7 +42,7 @@ public class GlobalExceptionHandler {
private String applicationName;
@Reference(validation = "true", version = "${dubbo.consumer.AdminAccessLogService.version:1.0.0}")
private SystemLogService adminAccessLogService;
private SystemLogService systemLogService;
// 逻辑异常
@ResponseBody
@ -125,7 +125,7 @@ public class GlobalExceptionHandler {
@Async
public void addExceptionLog(ExceptionLogAddDTO exceptionLog) {
adminAccessLogService.addExceptionLog(exceptionLog);
systemLogService.addExceptionLog(exceptionLog);
}
}

View File

@ -34,7 +34,7 @@ public class AccessLogInterceptor extends HandlerInterceptorAdapter {
private static final ThreadLocal<Date> START_TIME = new ThreadLocal<>();
@Reference(validation = "true", version = "${dubbo.consumer.AdminAccessLogService.version:1.0.0}")
private SystemLogService adminAccessLogService;
private SystemLogService systemAccessLogService;
@Value("${spring.application.name}")
private String applicationName;
@ -89,7 +89,7 @@ public class AccessLogInterceptor extends HandlerInterceptorAdapter {
@Async // 异步入库
public void addAccessLog(AccessLogAddDTO accessLog) {
try {
adminAccessLogService.addAccessLog(accessLog);
systemAccessLogService.addAccessLog(accessLog);
} catch (Throwable th) {
logger.error("[addAccessLog][插入访问日志({}) 发生异常({})", JSON.toJSONString(accessLog), ExceptionUtils.getRootCauseMessage(th));
}