yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
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) {