| 
					
				 | 
			
			
				@@ -16,6 +16,7 @@ import org.aspectj.lang.reflect.MethodSignature; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import org.slf4j.Logger;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import org.slf4j.LoggerFactory;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import org.springframework.stereotype.Component;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+import org.springframework.validation.BindingResult;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import org.springframework.web.multipart.MultipartFile;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import org.springframework.web.servlet.HandlerMapping;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import com.alibaba.fastjson.JSON;
 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -237,6 +238,7 @@ public class LogAspect 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 return entry.getValue() instanceof MultipartFile;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             }
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         }
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        return o instanceof MultipartFile || o instanceof HttpServletRequest || o instanceof HttpServletResponse;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        return o instanceof MultipartFile || o instanceof HttpServletRequest || o instanceof HttpServletResponse
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                || o instanceof BindingResult;
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     }
 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 }
 
			 |