diff options
| author | Dean Troyer <dtroyer@gmail.com> | 2014-07-08 01:44:55 -0500 |
|---|---|---|
| committer | Terry Howe <terrylhowe@gmail.com> | 2014-07-26 12:22:50 -0600 |
| commit | b96d9d374c524e44edfb9656525bbbcc32d3a605 (patch) | |
| tree | 28596ba1c56ebcd98961d967d75080405ef2bb78 | |
| parent | 01f7a5f9f59705deb5c800b78457f69c1e73cdbd (diff) | |
| download | python-openstackclient-b96d9d374c524e44edfb9656525bbbcc32d3a605.tar.gz | |
More make_client() logging cleanup
Change-Id: I5af4b9c52c69d6e31e6ca5f90d5880c097880a71
| -rw-r--r-- | openstackclient/identity/client.py | 2 | ||||
| -rw-r--r-- | openstackclient/object/client.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/identity/client.py b/openstackclient/identity/client.py index 72e8bfae..7f5390c8 100644 --- a/openstackclient/identity/client.py +++ b/openstackclient/identity/client.py @@ -36,7 +36,7 @@ def make_client(instance): API_NAME, instance._api_version[API_NAME], API_VERSIONS) - LOG.debug('Instantiating identity client: %s' % identity_client) + LOG.debug('Instantiating identity client: %s', identity_client) if instance._url: LOG.debug('Using token auth') diff --git a/openstackclient/object/client.py b/openstackclient/object/client.py index 006d54c5..b81ffaaf 100644 --- a/openstackclient/object/client.py +++ b/openstackclient/object/client.py @@ -36,7 +36,7 @@ def make_client(instance): API_NAME, instance._api_version[API_NAME], API_VERSIONS) - LOG.debug('Instantiating object client: %s' % object_client) + LOG.debug('Instantiating object client: %s', object_client) if instance._url: endpoint = instance._url |
