Skip to content

Commit

Permalink
more logging
Browse files Browse the repository at this point in the history
  • Loading branch information
cl0ete committed Nov 27, 2023
1 parent 8de5740 commit 6e82c27
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions aries_cloudagent/resolver/did_resolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,14 @@ async def _resolve(
DID.validate(did)
for resolver in await self._match_did_to_resolver(profile, did):
try:
LOGGER.warning("Resolving DID %s with %s", did, resolver)
LOGGER.debug("Resolving DID %s with %s", did, resolver)
document = await resolver.resolve(
profile,
did,
service_accept,
)
LOGGER.warning(f"IN RESOLVER DOC: {document}")
return resolver, document
except DIDNotFound:
LOGGER.debug("DID %s not found by resolver %s", did, resolver)
Expand Down

0 comments on commit 6e82c27

Please sign in to comment.