- adminAccessLogService 改为 systemAccessLogService
This commit is contained in:
parent
c7a4a90a69
commit
f70d982047
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -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));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user