From 3e7e8a98434731121d4a8736fd35af4cd6cb7a9e Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期三, 17 四月 2024 22:54:09 +0800
Subject: [PATCH] remove commnet

---
 smart-starter-log/src/main/java/com/qianwen/core/log/aspect/RequestLogAspect.java |   20 +++++++++-----------
 1 files changed, 9 insertions(+), 11 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 4017c58..cc17894 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
@@ -1,46 +1,44 @@
 package com.qianwen.core.log.aspect;
 
-import java.io.InputStream;
 import java.lang.reflect.Method;
 import java.util.ArrayList;
 import java.util.Enumeration;
 import java.util.HashMap;
-import java.util.Iterator;
 import java.util.List;
 import java.util.Map;
 import java.util.Objects;
 import java.util.concurrent.TimeUnit;
 import java.util.concurrent.atomic.AtomicBoolean;
+
 import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpServletResponse;
+
 import org.aspectj.lang.ProceedingJoinPoint;
 import org.aspectj.lang.annotation.Around;
 import org.aspectj.lang.annotation.Aspect;
 import org.aspectj.lang.reflect.MethodSignature;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
-import com.qianwen.core.launch.log.BladeLogLevel;
-import com.qianwen.core.log.props.BladeRequestLogProperties;
-import com.qianwen.core.tool.jackson.JsonUtil;
-import com.qianwen.core.tool.utils.ClassUtil;
-import com.qianwen.core.tool.utils.StringUtil;
-import com.qianwen.core.tool.utils.WebUtil;
 import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
 import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication;
 import org.springframework.context.annotation.Configuration;
 import org.springframework.core.MethodParameter;
-import org.springframework.core.io.InputStreamSource;
 import org.springframework.web.bind.annotation.PathVariable;
 import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestParam;
 import org.springframework.web.context.request.WebRequest;
 import org.springframework.web.multipart.MultipartFile;
 
+import com.qianwen.core.launch.log.BladeLogLevel;
+import com.qianwen.core.log.props.BladeRequestLogProperties;
+import com.qianwen.core.tool.jackson.JsonUtil;
+import com.qianwen.core.tool.utils.ClassUtil;
+import com.qianwen.core.tool.utils.StringUtil;
+import com.qianwen.core.tool.utils.WebUtil;
+
 @Aspect
 @Configuration(proxyBeanMethods = false)
 @ConditionalOnProperty(value = {"blade.log.request.enabled"}, havingValue = "true", matchIfMissing = true)
 @ConditionalOnWebApplication(type = ConditionalOnWebApplication.Type.SERVLET)
-/* loaded from: blade-starter-log-9.3.0.0-SNAPSHOT.jar:org/springblade/core/log/aspect/RequestLogAspect.class */
 public class RequestLogAspect {
     private static final Logger log = LoggerFactory.getLogger(RequestLogAspect.class);
     private final BladeRequestLogProperties properties;

--
Gitblit v1.9.3