Skip to content

Commit

Permalink
🎨 Set wallet upgrade exception log to warning
Browse files Browse the repository at this point in the history
Signed-off-by: ff137 <[email protected]>
  • Loading branch information
ff137 committed Dec 5, 2024
1 parent 4531d8a commit 5a3b99a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions acapy_agent/core/conductor.py
Original file line number Diff line number Diff line change
Expand Up @@ -636,9 +636,10 @@ async def start(self) -> None:
LOGGER.debug("Checking for wallet upgrades in progress.")
await self.check_for_wallet_upgrades_in_progress()
LOGGER.debug("Wallet upgrades check completed.")
except Exception:
LOGGER.exception(
"An exception was caught while checking for wallet upgrades in progress."
except Exception as e:
LOGGER.warning(
"An exception was caught while checking for wallet upgrades in progress.",
exc_info=e,
)

# notify protocols of startup status
Expand Down

0 comments on commit 5a3b99a

Please sign in to comment.