Skip to content

Commit

Permalink
add param to logger
Browse files Browse the repository at this point in the history
  • Loading branch information
cl0ete committed Dec 4, 2024
1 parent 7288abd commit 08ffe99
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion app/routes/revocation.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,12 @@ async def fix_revocation_registry_entry_state(
---
RevRegWalletUpdatedResult
"""
bound_logger = logger.bind(body={"revocation_registry_id": revocation_registry_id})
bound_logger = logger.bind(
body={
"revocation_registry_id": revocation_registry_id,
"apply_ledger_update": apply_ledger_update,
}
)
bound_logger.debug("PUT request received: Fix revocation registry entry state")

async with client_from_auth(auth) as aries_controller:
Expand Down

0 comments on commit 08ffe99

Please sign in to comment.