Refine logging in local_bip85 init

This commit is contained in:
thePR0M3TH3AN
2025-08-08 13:09:58 -04:00
parent d390bf8620
commit f57bfcd7fa

View File

@@ -9,7 +9,7 @@ try:
logger.info("BIP85 module imported successfully.")
except Exception as e:
logger.error("Failed to import BIP85 module: %s", e, exc_info=True)
logger.error(f"Failed to import BIP85 module: {e}", exc_info=True)
BIP85 = None
__all__ = ["BIP85"] if BIP85 is not None else []