Skip to content

Commit

Permalink
Add all-transactions response to debug logs (#1929)
Browse files Browse the repository at this point in the history
  • Loading branch information
moisses89 authored Mar 20, 2024
1 parent 87d2353 commit 19447f0
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion safe_transaction_service/history/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,17 @@ def list(self, request, *args, **kwargs):
queued,
trusted,
)
return self.get_paginated_response(all_txs_serialized)
paginated_response = self.get_paginated_response(all_txs_serialized)
logger.debug(
"%s: All txs from identifiers for Safe=%s executed=%s queued=%s trusted=%s: %s",
self.__class__.__name__,
safe,
executed,
queued,
trusted,
paginated_response.data["results"],
)
return paginated_response

@swagger_auto_schema(
responses={
Expand Down

0 comments on commit 19447f0

Please sign in to comment.