diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-04-09 08:57:45 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-04-09 08:57:59 -0400 |
commit | f3ecf3025f82f84d42ec463990ff787647cc7bf5 (patch) | |
tree | a21783e8e39b23f660cf4886cbdf5a2028d6f7c3 /test | |
parent | 54798c3a31b0fe3dbe3b0c2dd957ecce75e29797 (diff) | |
parent | fa078984c9cc706dc7b510a8ada26c3026713647 (diff) |
Merge #15772: test: Properly log named args in authproxy
fa078984c9 test: Properly log named args in authproxy (MarcoFalke)
Pull request description:
ACKs for commit fa0789:
promag:
ACK fa07898, for instance:
practicalswift:
utACK fa078984c9cc706dc7b510a8ada26c3026713647
Tree-SHA512: 3a2564c9b8392c2ef13657138fa0ba4a521015e2d53331156d2a07ccc9497fb268f21e8d93b065c5734d25e4aea8f5cf67f07e6ab93b0ec2987d66a136f94bb8
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/test_framework/authproxy.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/functional/test_framework/authproxy.py b/test/functional/test_framework/authproxy.py index d039f7d6fe..4ba6ac1db2 100644 --- a/test/functional/test_framework/authproxy.py +++ b/test/functional/test_framework/authproxy.py @@ -122,8 +122,11 @@ class AuthServiceProxy(): def get_request(self, *args, **argsn): AuthServiceProxy.__id_count += 1 - log.debug("-%s-> %s %s" % (AuthServiceProxy.__id_count, self._service_name, - json.dumps(args, default=EncodeDecimal, ensure_ascii=self.ensure_ascii))) + log.debug("-{}-> {} {}".format( + AuthServiceProxy.__id_count, + self._service_name, + json.dumps(args or argsn, default=EncodeDecimal, ensure_ascii=self.ensure_ascii), + )) if args and argsn: raise ValueError('Cannot handle both named and positional arguments') return {'version': '1.1', |