mirror of
				https://github.com/matrix-org/synapse.git
				synced 2025-11-04 02:01:03 +01:00 
			
		
		
		
	Add some logging to user directory
This commit is contained in:
		
							parent
							
								
									671f0afa1d
								
							
						
					
					
						commit
						2f34ad31ac
					
				@ -130,8 +130,15 @@ class UserDirectoyHandler(object):
 | 
			
		||||
        # We process by going through each existing room at a time.
 | 
			
		||||
        room_ids = yield self.store.get_all_rooms()
 | 
			
		||||
 | 
			
		||||
        logger.info("Doing initial update of user directory. %d rooms", len(room_ids))
 | 
			
		||||
        num_processed_rooms = 1
 | 
			
		||||
 | 
			
		||||
        for room_id in room_ids:
 | 
			
		||||
            logger.info("Handling room %d/%d", num_processed_rooms, len(room_ids))
 | 
			
		||||
            yield self._handle_intial_room(room_id)
 | 
			
		||||
            num_processed_rooms += 1
 | 
			
		||||
 | 
			
		||||
        logger.info("Processed all rooms.")
 | 
			
		||||
 | 
			
		||||
        self.initially_handled_users = None
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user