diff options
| author | Jenkins <jenkins@review.openstack.org> | 2014-01-10 17:07:12 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2014-01-10 17:07:12 +0000 |
| commit | 6ad05112f47cee2f2f5e8310dc9e05de33263b0c (patch) | |
| tree | 97832d730516b6ae60ba1380b0a4c3e18392f969 /openstackclient/compute | |
| parent | e821a6b97fcc5484ceae3f228f851be30a26ed76 (diff) | |
| parent | a5e087e7a9b88e2ce698ddc32d89e1462509fbb5 (diff) | |
| download | python-openstackclient-6ad05112f47cee2f2f5e8310dc9e05de33263b0c.tar.gz | |
Merge "Displaying curl commands for nova and cinder calls"
Diffstat (limited to 'openstackclient/compute')
| -rw-r--r-- | openstackclient/compute/client.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/openstackclient/compute/client.py b/openstackclient/compute/client.py index 4ccb2f6d..765a48db 100644 --- a/openstackclient/compute/client.py +++ b/openstackclient/compute/client.py @@ -35,6 +35,10 @@ def make_client(instance): instance._api_version[API_NAME], API_VERSIONS) LOG.debug('instantiating compute client: %s' % compute_client) + + # Set client http_log_debug to True if verbosity level is high enough + http_log_debug = utils.get_effective_log_level() <= logging.DEBUG + client = compute_client( username=instance._username, api_key=instance._password, @@ -49,7 +53,8 @@ def make_client(instance): extensions=[], service_type=API_NAME, # FIXME(dhellmann): what is service_name? - service_name='') + service_name='', + http_log_debug=http_log_debug) # Populate the Nova client to skip another auth query to Identity if instance._url: |
