From 67354f651b064c7c67ad749bf75196d59b851d18 Mon Sep 17 00:00:00 2001 From: Dean Troyer Date: Wed, 7 May 2014 10:54:38 -0500 Subject: 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 --- openstackclient/common/commandmanager.py | 1 - 1 file changed, 1 deletion(-) (limited to 'openstackclient/common/commandmanager.py') 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 -- cgit v1.2.1