Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
1101-1 committed Dec 5, 2023
1 parent 6975927 commit 5045449
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/aws/resoto_plugin_aws/aws_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def call_single(
paginator = client.get_paginator(py_action)
result: List[Json] = []
for page in paginator.paginate(**kwargs):
log.debug(f"[Aws] Next page for service={aws_service} action={action}{arg_info}") # type: ignore
log.debug2(f"[Aws] Next page for service={aws_service} action={action}{arg_info}") # type: ignore
next_page: Json = self.__to_json(page) # type: ignore
if result_name is None:
# the whole object is appended
Expand Down

0 comments on commit 5045449

Please sign in to comment.