From 1ce239103cb936d0a59ec5dee535a1e5ff28953f Mon Sep 17 00:00:00 2001 From: Valentin Tolmer Date: Mon, 13 Feb 2023 15:46:48 +0100 Subject: [PATCH] server: removed dbg --- server/src/domain/ldap/user.rs | 2 -- server/src/infra/ldap_handler.rs | 2 -- 2 files changed, 4 deletions(-) diff --git a/server/src/domain/ldap/user.rs b/server/src/domain/ldap/user.rs index d84a065..603bb05 100644 --- a/server/src/domain/ldap/user.rs +++ b/server/src/domain/ldap/user.rs @@ -107,8 +107,6 @@ fn make_ldap_search_user_result_entry( ) -> LdapSearchResultEntry { let expanded_attributes = expand_user_attribute_wildcards(attributes); let dn = format!("uid={},ou=people,{}", user.user_id.as_str(), base_dn_str); - dbg!(&attributes, &expanded_attributes, &user); - LdapSearchResultEntry { dn, attributes: expanded_attributes diff --git a/server/src/infra/ldap_handler.rs b/server/src/infra/ldap_handler.rs index b6959d3..9198f2c 100644 --- a/server/src/infra/ldap_handler.rs +++ b/server/src/infra/ldap_handler.rs @@ -581,7 +581,6 @@ impl LdapHandler LdapResult> { - dbg!(&request); let req = make_search_request::( &self.ldap_info.base_dn_str, LdapFilter::Equality("dn".to_string(), request.dn.to_string()), @@ -598,7 +597,6 @@ impl LdapHandler { - dbg!(&entry.attributes); let available = entry .attributes .iter()