Skip to content

Commit

Permalink
refactor(CLI): change ERROR to INFO for no delegates found
Browse files Browse the repository at this point in the history
  • Loading branch information
fubuloubu committed Jun 5, 2024
1 parent 88795ef commit eddd1f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ape_safe/_cli/delegates.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def _list(cli_ctx, safe):
click.echo("- " + "\n- ".join(delegates[delegator]))

else:
cli_ctx.logger.error(f"No delegates for {safe.address} ({safe.alias})")
cli_ctx.logger.info(f"No delegates for {safe.address} ({safe.alias})")


@delegates.command(cls=ConnectedProviderCommand)
Expand Down

0 comments on commit eddd1f8

Please sign in to comment.