feat(BRIDGE-361): log the utilized keychain helper

This commit is contained in:
Atanas Janeshliev
2025-07-01 10:56:19 +02:00
parent be9e03d917
commit 26cc6169fa

View File

@ -129,6 +129,8 @@ func loadVaultKey(vaultDir string, keychains *keychain.List) (key []byte, keycha
return nil, keychainHelper, fmt.Errorf("could not create keychain: %w", err)
}
logrus.WithField("keychainHelper", keychainHelper).Info("Initialized keychain helper")
key, err = vault.GetVaultKey(kc)
if err != nil {
if keychain.IsErrKeychainNoItem(err) {