Merge "Remove verbose option"

This commit is contained in:
Jenkins 2016-05-17 14:14:20 +00:00 committed by Gerrit Code Review
commit 64d39b41ba
3 changed files with 11 additions and 5 deletions

View File

@ -36,10 +36,6 @@ run the following::
Print debugging output.
.. option:: -v, --verbose
Print more verbose output.
.. option:: --version
Show the program's version number and exit.

View File

@ -116,7 +116,7 @@ class TestCase(testtools.TestCase):
fatal_exception_format_errors=True,
tempdir=tempfile.tempdir)
self.set_defaults(host='fake-mini',
verbose=True)
debug=True)
self.set_defaults(connection="sqlite://",
sqlite_synchronous=False,
group='database')

View File

@ -0,0 +1,10 @@
---
upgrade:
- The 'verbose' configuration option was removed,
consequently the "--verbose, -v" parameter from all
command lines was also removed. This affects the
ironic-api, ironic-conductor, ironic-dbsync, and
ironic-rootwrap commands. The verbose config/parameter
was originally a shortcut to set the log level to INFO, however
the log level has defaulted to INFO since this option was
deprecated, so this option was a noop.