add namespace ID to loading groups debug message on unseal (#27922)

This commit is contained in:
Ellie 2024-07-31 12:29:44 -05:00 committed by GitHub
parent aeae52fc4f
commit 4ccf568480
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)