From 4ccf5684808b4566d4e0f4e8504c8a109d3b8687 Mon Sep 17 00:00:00 2001 From: Ellie Date: Wed, 31 Jul 2024 12:29:44 -0500 Subject: [PATCH] add namespace ID to loading groups debug message on unseal (#27922) --- vault/identity_store_util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vault/identity_store_util.go b/vault/identity_store_util.go index fe41b469ff..19395e0c68 100644 --- a/vault/identity_store_util.go +++ b/vault/identity_store_util.go @@ -148,7 +148,7 @@ func (i *IdentityStore) loadGroups(ctx context.Context) error { } if i.logger.IsDebug() { - i.logger.Debug("loading group", "name", group.Name, "id", group.ID) + i.logger.Debug("loading group", "namespace", ns.ID, "name", group.Name, "id", group.ID) } txn := i.db.Txn(true)