diff --git a/lib/ucs.py b/lib/ucs.py index 7c591bdf5f07b17b26514ed8edfc8644bf8c6ee3..f12346aaf2e8d3f8c668dee3acf74dc512d6ed70 100644 --- a/lib/ucs.py +++ b/lib/ucs.py @@ -155,7 +155,8 @@ class Ucs: logging.error(f"2/2: Request body: {json.dumps(self.create_user_json)}") sys.exit(response.text) else: - logging.debug(f"{person['username']}: {person['password']} - {response}") + response_json=json.loads(response.text) + logging.debug(f"{person['username']}: {person['password']} - {response} - {response_json['uuid']}") self.counter += 1 self.__write_account_credentials(person['username']+"\t"+person['password'])