Skip to content

Commit

Permalink
Merge pull request #122 from mganisin/signup-logging
Browse files Browse the repository at this point in the history
Log signup params
  • Loading branch information
Marian Ganisin authored Jul 4, 2022
2 parents 543a00c + 8d8b9b9 commit 4c374d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion threescale_api/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def signup(self, params: dict, **kwargs) -> 'Account':
**kwargs: Optional args
Returns(Account): Account instance
"""
log.info("[SIGNUP] Create new Signup: %s", kwargs)
log.info("[SIGNUP] Create new Signup: params=%s, kwargs=%s", params, kwargs)
url = self.threescale_client.admin_api_url + '/signup'
response = self.rest.post(url=url, json=params, **kwargs)
instance = self._create_instance(response=response)
Expand Down

0 comments on commit 4c374d8

Please sign in to comment.