mirror of
				https://github.com/nitnelave/lldap.git
				synced 2023-04-12 14:25:13 +00:00 
			
		
		
		
	server: remove spurious debug message
This commit is contained in:
		
							parent
							
								
									722fc2de57
								
							
						
					
					
						commit
						588159819b
					
				@ -207,15 +207,9 @@ impl BackendHandler for SqlBackendHandler {
 | 
			
		||||
                                Some(GroupDetails {
 | 
			
		||||
                                    group_id: row.get::<GroupId, _>(&*Groups::GroupId.to_string()),
 | 
			
		||||
                                    display_name,
 | 
			
		||||
                                    creation_date: {
 | 
			
		||||
                                        debug!(
 | 
			
		||||
                                            "creation_date: {}",
 | 
			
		||||
                                            row.get::<String, _>("group_creation_date")
 | 
			
		||||
                                        );
 | 
			
		||||
                                        row.get::<chrono::DateTime<chrono::Utc>, _>(
 | 
			
		||||
                                            "group_creation_date",
 | 
			
		||||
                                        )
 | 
			
		||||
                                    },
 | 
			
		||||
                                    creation_date: row.get::<chrono::DateTime<chrono::Utc>, _>(
 | 
			
		||||
                                        "group_creation_date",
 | 
			
		||||
                                    ),
 | 
			
		||||
                                    uuid: row.get::<Uuid, _>("group_uuid"),
 | 
			
		||||
                                })
 | 
			
		||||
                            }
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user