| 
					
				 | 
			
			
				@@ -201,8 +201,8 @@ public class BlacklistContainer { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         return videoIds.stream().filter(videoId -> { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             if (videoTagAnyMatch(videoId, tagIdSet)) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                LOG.info("用户 {} 在因命中 {} 移除对应的视频ID {}: 请求参数为: hotSceneType={}, cityCode={}, clientIP={}, mid={}", 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                        uid, userType, videoId, hotSceneType, cityCode, clientIP, mid); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                LOG.info("用户 {} 在因命中 {} 移除对应的视频ID {}: 请求参数为: hotSceneType={}, cityCode={}, clientIP={}, mid={}, usedScene={}, appType={}", 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                        uid, userType, videoId, hotSceneType, cityCode, clientIP, mid, usedScene, appType); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 return false; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             return true; 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -212,8 +212,8 @@ public class BlacklistContainer { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     public String matchUserBlacklistTypeEnum(String uid, Long hotSceneType, String cityCode, String clientIP, String mid, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                                              String usedScene, Integer appType) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         try { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            LOG.info("计算用户黑名单类型,判断参数: uid={}, hotSceneType={}, cityCode={}, clientIP={}, mid={}, appType={}", 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                    uid, hotSceneType, cityCode, clientIP, mid, appType); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            LOG.info("计算用户黑名单类型,判断参数: uid={}, hotSceneType={}, cityCode={}, clientIP={}, mid={}, usedScene={}, appType={}", 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    uid, hotSceneType, cityCode, clientIP, mid, usedScene, appType); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             if (StringUtils.isNotBlank(uid)) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 String key = this.calcUserRedisKey(uid); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 Map<String, String> uidBlacklistMap = blacklistCache.get(key); 
			 |