Skip to content

Commit ebbc082

Browse files
committed
🎨 Fix logging None value
Signed-off-by: ff137 <[email protected]>
1 parent 1dcd0d7 commit ebbc082

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

acapy_agent/storage/askar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ async def fetch(
416416
raise StorageSearchError("Search query is complete")
417417

418418
limit = max_count or self.page_size
419-
LOGGER.debug("Fetching records (limit=%d, offset=%d)", limit, offset)
419+
LOGGER.debug("Fetching records (limit=%d, offset=%d)", limit, offset or 0)
420420
await self._open(limit=limit, offset=offset)
421421

422422
count = 0

0 commit comments

Comments
 (0)