Add more logging

This commit is contained in:
2025-03-16 05:33:12 +01:00
parent 921a2a5c83
commit c63c26137d
2 changed files with 8 additions and 1 deletions

View File

@@ -54,6 +54,7 @@ impl LldapConfig {
}
pub async fn build_client(&self) -> Result<LldapClient> {
debug!("Creating LLDAP client");
let timeout = Duration::from_secs(1);
let client = reqwest::ClientBuilder::new().timeout(timeout).build()?;