Skip to content

Commit

Permalink
Add all-transactions response to debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
moisses89 committed Mar 20, 2024
1 parent e92bbd0 commit 3947839
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion safe_transaction_service/history/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,9 @@ 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(paginated_response.data["results"])
return paginated_response

@swagger_auto_schema(
responses={
Expand Down

0 comments on commit 3947839

Please sign in to comment.