Skip to content

Commit 4c374d8

Browse files
author
Marian Ganisin
authored
Merge pull request 3scale-qe#122 from mganisin/signup-logging
Log signup params
2 parents 543a00c + 8d8b9b9 commit 4c374d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

threescale_api/resources.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def signup(self, params: dict, **kwargs) -> 'Account':
177177
**kwargs: Optional args
178178
Returns(Account): Account instance
179179
"""
180-
log.info("[SIGNUP] Create new Signup: %s", kwargs)
180+
log.info("[SIGNUP] Create new Signup: params=%s, kwargs=%s", params, kwargs)
181181
url = self.threescale_client.admin_api_url + '/signup'
182182
response = self.rest.post(url=url, json=params, **kwargs)
183183
instance = self._create_instance(response=response)

0 commit comments

Comments
 (0)