From af54cada455bd83f360a198a7599e3885a5257aa Mon Sep 17 00:00:00 2001 From: Nicolas Haquet Date: Wed, 15 Nov 2023 14:59:57 +0100 Subject: [PATCH] [ADD] more logs --- src/controller/sync.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/controller/sync.rs b/src/controller/sync.rs index ae169d8..18499f6 100644 --- a/src/controller/sync.rs +++ b/src/controller/sync.rs @@ -258,6 +258,7 @@ pub async fn sync( info!("new project list: {json}"); let users = extract_sync_id(&mut identity, request_id, "user", &config).await?; for user in users { + info!("patching user: {user}."); send_to_iam(&config, &user, &id, &json, request_id, "group").await?; } }