From 84dea9976c29ac938fa018b8566c71461b056418 Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期五, 05 四月 2024 08:18:59 +0800
Subject: [PATCH] 增加log文件忽略配置

---
 smart-starter-log/src/main/java/com/qianwen/core/log/aspect/RequestLogAspect.java |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/smart-starter-log/src/main/java/com/qianwen/core/log/aspect/RequestLogAspect.java b/smart-starter-log/src/main/java/com/qianwen/core/log/aspect/RequestLogAspect.java
index 03f9646..4017c58 100644
--- a/smart-starter-log/src/main/java/com/qianwen/core/log/aspect/RequestLogAspect.java
+++ b/smart-starter-log/src/main/java/com/qianwen/core/log/aspect/RequestLogAspect.java
@@ -49,7 +49,7 @@
         this.properties = properties;
     }
 
-    @Around("execution(!static org.springblade.core.tool.api.R *(..)) && (@within(org.springframework.stereotype.Controller) || @within(org.springframework.web.bind.annotation.RestController))")
+    @Around("execution(!static com.qianwen.core.tool.api.R *(..)) && (@within(org.springframework.stereotype.Controller) || @within(org.springframework.web.bind.annotation.RestController))")
     public Object aroundApi(ProceedingJoinPoint point) throws Throwable {
         BladeLogLevel level = this.properties.getLevel();
         if (BladeLogLevel.NONE == level) {

--
Gitblit v1.9.3