Merge pull request #805 from PR0M3TH3AN/codex/remove-logger-level-check-in-init.py

Clean up logging in local BIP85 init
This commit is contained in:
thePR0M3TH3AN
2025-08-08 14:50:37 -04:00
committed by GitHub

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 []