diff options
| author | Dean Troyer <dtroyer@gmail.com> | 2014-10-21 09:51:47 -0500 |
|---|---|---|
| committer | Dean Troyer <dtroyer@gmail.com> | 2014-10-24 13:16:41 -0500 |
| commit | 8ba74451ee9efe21a0554c184f28e380fe714313 (patch) | |
| tree | 87f235b3f1a93f7cd27f34363c3241921b88107c /openstackclient/common | |
| parent | d07ae4236a3d025540b8174d497ce1277198c72f (diff) | |
| download | python-openstackclient-8ba74451ee9efe21a0554c184f28e380fe714313.tar.gz | |
Adjust some logging levels
* Promote select messages to INFO so lower logging levels can be useful
* Help more modules not say so much all the time
Change-Id: I814023c1489595998ae74efe40ef439b3522ee74
Diffstat (limited to 'openstackclient/common')
| -rw-r--r-- | openstackclient/common/clientmanager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/common/clientmanager.py b/openstackclient/common/clientmanager.py index adec842f..0396e83d 100644 --- a/openstackclient/common/clientmanager.py +++ b/openstackclient/common/clientmanager.py @@ -118,7 +118,7 @@ class ClientManager(object): root_logger = logging.getLogger('') LOG.setLevel(root_logger.getEffectiveLevel()) - LOG.debug('Using auth plugin: %s' % self.auth_plugin_name) + LOG.info('Using auth plugin: %s' % self.auth_plugin_name) self.auth = auth_plugin.load_from_options(**self._auth_params) # needed by SAML authentication request_session = requests.session() |
