debug: add exception type to error logging
Some checks failed
Blockchain Synchronization Verification / sync-verification (push) Failing after 8s
Integration Tests / test-service-integration (push) Successful in 1m5s
Multi-Node Blockchain Health Monitoring / health-check (push) Successful in 5s
P2P Network Verification / p2p-verification (push) Successful in 8s
Python Tests / test-python (push) Successful in 26s
Security Scanning / security-scan (push) Successful in 1m45s

This commit is contained in:
aitbc
2026-04-28 12:12:49 +02:00
parent e8ac716383
commit 0029a16802

View File

@@ -72,7 +72,7 @@ def _load_private_key_from_keystore(keystore_dir: Path, password: str, target_ad
logger.info(f"Successfully decrypted keystore file: {kf.name}")
return private_bytes
except Exception as e:
logger.warning(f"Failed to decrypt keystore file {kf.name}: {e}")
logger.warning(f"Failed to decrypt keystore file {kf.name}: {type(e).__name__}: {str(e)}")
continue
return None