summaryrefslogtreecommitdiff
path: root/openstackclient/common/commandmanager.py
diff options
context:
space:
mode:
authorDean Troyer <dtroyer@gmail.com>2014-05-07 10:54:38 -0500
committerDean Troyer <dtroyer@gmail.com>2014-06-13 17:15:17 -0500
commit67354f651b064c7c67ad749bf75196d59b851d18 (patch)
tree338f43dcddbfad4ef6af53f4be776d40668dd35c /openstackclient/common/commandmanager.py
parent497a38903c4a282975b2f197bc4af22c15d8ab21 (diff)
downloadpython-openstackclient-67354f651b064c7c67ad749bf75196d59b851d18.tar.gz
Clean up logging levels
The following logging levels are set according to the combination of --verbose, --quiet and --debug options: verbose_level logging level options 0 --quiet ERROR 1 (none) WARNING 2 --verbose INFO 3+ --verbose --verbose DEBUG or --debug Logging levels for the requests and iso8601 modules are forced to ERROR. This is the first step in bp use-logging-not-print The difference between '--debug' and '--verbose --verbose' is --debug triggers cliff's exception handling and traceback display. Change-Id: Ide2233b3316471d279260fb1e7255a6ca2072023
Diffstat (limited to 'openstackclient/common/commandmanager.py')
-rw-r--r--openstackclient/common/commandmanager.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/openstackclient/common/commandmanager.py b/openstackclient/common/commandmanager.py
index 204b943b..aa238a23 100644
--- a/openstackclient/common/commandmanager.py
+++ b/openstackclient/common/commandmanager.py
@@ -37,7 +37,6 @@ class CommandManager(cliff.commandmanager.CommandManager):
group = self.namespace
self.group_list.append(group)
for ep in pkg_resources.iter_entry_points(group):
- LOG.debug('found command %r', ep.name)
cmd_name = (
ep.name.replace('_', ' ')
if self.convert_underscores