Remove references to 'verbose' logging option

This option is deprecated and will be removed in next oslo.log releases:
ef9f69f35e/oslo_log/_options.py (L44)

Change-Id: Ifc490efc49f81a517bd19adc79cfd765aa6c8368
This commit is contained in:
Ihar Hrachyshka 2016-04-06 12:47:24 +02:00
parent 7263c35331
commit 316561e8a9
21 changed files with 6 additions and 182 deletions

View File

@ -65,13 +65,12 @@ In each configuration file, add these lines:
.. code-block:: ini .. code-block:: ini
verbose = False
debug = False debug = False
use_syslog = True use_syslog = True
syslog_log_facility = LOG_LOCAL0 syslog_log_facility = LOG_LOCAL0
In addition to enabling syslog, these settings also turn off verbose and In addition to enabling syslog, these settings also turn off debugging output
debugging output from the log. from the log.
.. note:: .. note::

View File

@ -95,10 +95,9 @@ are not. One possible problem is that the certificates are the wrong
files or garbage. You can remove these files and run another command files or garbage. You can remove these files and run another command
against your server; they are fetched on demand. against your server; they are fetched on demand.
The Identity service log should show the access of the certificate The Identity service log should show the access of the certificate files. You
files. You might have to turn up your logging levels. Set might have to turn up your logging levels. Set ``debug = True`` in your
``debug = True`` and ``verbose = True`` in your Identity configuration Identity configuration file and restart the Identity server.
file and restart the Identity server.
.. code-block:: console .. code-block:: console

View File

@ -27,10 +27,6 @@ methods:
# Show debugging output in logs (sets DEBUG log level output) # Show debugging output in logs (sets DEBUG log level output)
# debug = False # debug = False
# Show more verbose log output (sets INFO log level output) if debug
is False
# verbose = False
# log_date_format = %Y-%m-%d %H:%M:%S # log_date_format = %Y-%m-%d %H:%M:%S
# use_syslog = False # use_syslog = False

View File

@ -453,7 +453,6 @@ correctly using these
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = true
control_exchange = neutron control_exchange = neutron
policy_file = C:\etc\policy.json policy_file = C:\etc\policy.json
rpc_backend = neutron.openstack.common.rpc.impl_kombu rpc_backend = neutron.openstack.common.rpc.impl_kombu

View File

@ -99,7 +99,6 @@ configuration sample for using the Windows iSCSI Driver:
rabbit_port = 5672 rabbit_port = 5672
sql_connection = mysql+pymysql://root:Passw0rd@IP_ADDRESS/cinder sql_connection = mysql+pymysql://root:Passw0rd@IP_ADDRESS/cinder
windows_iscsi_lun_path = C:\iSCSIVirtualDisks windows_iscsi_lun_path = C:\iSCSIVirtualDisks
verbose = True
rabbit_password = Passw0rd rabbit_password = Passw0rd
logdir = C:\OpenStack\Log\ logdir = C:\OpenStack\Log\
image_conversion_dir = C:\ImageConversionDir image_conversion_dir = C:\ImageConversionDir

View File

@ -341,7 +341,6 @@ OpenStack on Hyper-V. Below is a sample ``nova.conf`` for Windows:
injected_network_template = C:\Program Files (x86)\OpenStack\Nova\etc\interfaces.template injected_network_template = C:\Program Files (x86)\OpenStack\Nova\etc\interfaces.template
policy_file = C:\Program Files (x86)\OpenStack\Nova\etc\policy.json policy_file = C:\Program Files (x86)\OpenStack\Nova\etc\policy.json
mkisofs_cmd = C:\Program Files (x86)\OpenStack\Nova\bin\mkisofs.exe mkisofs_cmd = C:\Program Files (x86)\OpenStack\Nova\bin\mkisofs.exe
verbose = false
allow_resize_to_same_host = true allow_resize_to_same_host = true
running_deleted_instance_action = reap running_deleted_instance_action = reap
running_deleted_instance_poll_interval = 120 running_deleted_instance_poll_interval = 120

View File

@ -1,7 +1,6 @@
[DEFAULT] [DEFAULT]
# LOGS/STATE # LOGS/STATE
verbose=True
logdir=/var/log/nova logdir=/var/log/nova
state_path=/var/lib/nova state_path=/var/lib/nova
lock_path=/var/lock/nova lock_path=/var/lock/nova
@ -72,4 +71,4 @@ connection=mysql+pymysql://nova:yourpassword@192.168.206.130/nova
# LIBVIRT # LIBVIRT
[libvirt] [libvirt]
virt_type=qemu virt_type=qemu

View File

@ -15,9 +15,6 @@ For example:
# Print debugging output (set logging level to DEBUG instead # Print debugging output (set logging level to DEBUG instead
# of default WARNING level). (boolean value) # of default WARNING level). (boolean value)
debug = true debug = true
# Print more verbose output (set logging level to INFO instead
# of default WARNING level). (boolean value)
verbose = true
[database] [database]
# The SQLAlchemy connection string used to connect to the # The SQLAlchemy connection string used to connect to the

View File

@ -259,15 +259,6 @@ Install and configure components
Replace ``AODH_PASS`` with the password you chose for Replace ``AODH_PASS`` with the password you chose for
the ``aodh`` user in the Identity service. the ``aodh`` user in the Identity service.
* (Optional) To assist with troubleshooting, enable verbose
logging in the ``[DEFAULT]`` section:
.. code-block:: ini
[DEFAULT]
...
verbose = True
.. todo: .. todo:
Workaround for https://bugs.launchpad.net/ubuntu/+source/aodh/+bug/1513599. Workaround for https://bugs.launchpad.net/ubuntu/+source/aodh/+bug/1513599.

View File

@ -296,15 +296,6 @@ Install and configure components
... ...
dispatcher = database dispatcher = database
* (Optional) To assist with troubleshooting, enable verbose
logging in the ``[DEFAULT]`` section:
.. code-block:: ini
[DEFAULT]
...
verbose = True
Finalize installation Finalize installation
--------------------- ---------------------

View File

@ -93,15 +93,6 @@ Install and configure components
Replace ``CEILOMETER_PASS`` with the password you chose for Replace ``CEILOMETER_PASS`` with the password you chose for
the ``ceilometer`` user in the Identity service. the ``ceilometer`` user in the Identity service.
* (Optional) To assist with troubleshooting, enable verbose
logging in the ``[DEFAULT]`` section:
.. code-block:: ini
[DEFAULT]
...
verbose = True
Configure Compute to use Telemetry Configure Compute to use Telemetry
---------------------------------- ----------------------------------

View File

@ -221,15 +221,6 @@ Install and configure components
* Due to a packaging bug, remove the ``logdir`` option from the * Due to a packaging bug, remove the ``logdir`` option from the
``[DEFAULT]`` section. ``[DEFAULT]`` section.
* In the ``[DEFAULT]`` section, enable verbose mode to assist with
potential troubleshooting:
.. code-block:: ini
[DEFAULT]
...
verbose = True
.. only:: obs or debian .. only:: obs or debian
3. Ensure the kernel module ``nbd`` is loaded. 3. Ensure the kernel module ``nbd`` is loaded.

View File

@ -388,15 +388,6 @@ Install and configure components
* Due to a packaging bug, remove the ``logdir`` option from the * Due to a packaging bug, remove the ``logdir`` option from the
``[DEFAULT]`` section. ``[DEFAULT]`` section.
* In the ``[DEFAULT]`` section, enable verbose mode to assist with
potential troubleshooting:
.. code-block:: ini
[DEFAULT]
...
verbose = True
.. only:: rdo or ubuntu .. only:: rdo or ubuntu
3. Populate the Compute databases: 3. Populate the Compute databases:

View File

@ -542,7 +542,6 @@ Controller node
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
core_plugin = ml2 core_plugin = ml2
service_plugins = router service_plugins = router
allow_overlapping_ips = True allow_overlapping_ips = True
@ -591,13 +590,6 @@ Controller node
Network node Network node
------------ ------------
#. Configure common options. Edit the ``/etc/neutron/neutron.conf`` file:
.. code-block:: ini
[DEFAULT]
verbose = True
#. Configure the Linux bridge agent. Edit the #. Configure the Linux bridge agent. Edit the
``/etc/neutron/plugins/ml2/linuxbridge_agent.ini`` file: ``/etc/neutron/plugins/ml2/linuxbridge_agent.ini`` file:
@ -628,7 +620,6 @@ Network node
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
interface_driver = neutron.agent.linux.interface.BridgeInterfaceDriver interface_driver = neutron.agent.linux.interface.BridgeInterfaceDriver
external_network_bridge = external_network_bridge =
@ -643,7 +634,6 @@ Network node
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
interface_driver = neutron.agent.linux.interface.BridgeInterfaceDriver interface_driver = neutron.agent.linux.interface.BridgeInterfaceDriver
dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq
enable_isolated_metadata = True enable_isolated_metadata = True
@ -669,7 +659,6 @@ Network node
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
nova_metadata_ip = controller nova_metadata_ip = controller
metadata_proxy_shared_secret = METADATA_SECRET metadata_proxy_shared_secret = METADATA_SECRET
@ -685,13 +674,6 @@ Network node
Compute nodes Compute nodes
------------- -------------
#. Configure common options. Edit the ``/etc/neutron/neutron.conf`` file:
.. code-block:: ini
[DEFAULT]
verbose = True
#. Configure the Linux bridge agent. Edit the #. Configure the Linux bridge agent. Edit the
``/etc/neutron/plugins/ml2/linuxbridge_agent.ini`` file: ``/etc/neutron/plugins/ml2/linuxbridge_agent.ini`` file:

View File

@ -379,7 +379,6 @@ Controller node
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
core_plugin = ml2 core_plugin = ml2
service_plugins = router service_plugins = router
allow_overlapping_ips = True allow_overlapping_ips = True
@ -427,13 +426,6 @@ Network node
Compute nodes Compute nodes
------------- -------------
#. Configure common options. Edit the ``/etc/neutron/neutron.conf`` file:
.. code-block:: ini
[DEFAULT]
verbose = True
#. Configure the Macvtap agent. Edit the #. Configure the Macvtap agent. Edit the
``/etc/neutron/plugins/ml2/macvtap_agent.ini`` file: ``/etc/neutron/plugins/ml2/macvtap_agent.ini`` file:

View File

@ -643,7 +643,6 @@ Controller node
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
core_plugin = ml2 core_plugin = ml2
service_plugins = router service_plugins = router
allow_overlapping_ips = True allow_overlapping_ips = True
@ -695,13 +694,6 @@ Controller node
Network node Network node
------------ ------------
#. Configure common options. Edit the ``/etc/neutron/neutron.conf`` file:
.. code-block:: console
[DEFAULT]
verbose = True
#. Configure the Open vSwitch agent. Edit the #. Configure the Open vSwitch agent. Edit the
``/etc/neutron/plugins/ml2/openvswitch_agent.ini`` file: ``/etc/neutron/plugins/ml2/openvswitch_agent.ini`` file:
@ -728,7 +720,6 @@ Network node
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver
external_network_bridge = external_network_bridge =
@ -743,7 +734,6 @@ Network node
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver
dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq
enable_isolated_metadata = True enable_isolated_metadata = True
@ -769,7 +759,6 @@ Network node
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
nova_metadata_ip = controller nova_metadata_ip = controller
metadata_proxy_shared_secret = METADATA_SECRET metadata_proxy_shared_secret = METADATA_SECRET
@ -786,13 +775,6 @@ Network node
Compute nodes Compute nodes
------------- -------------
#. Configure common options. Edit the ``/etc/neutron/neutron.conf`` file:
.. code-block:: ini
[DEFAULT]
verbose = True
#. Configure the Open vSwitch agent. Edit the #. Configure the Open vSwitch agent. Edit the
``/etc/neutron/plugins/ml2/openvswitch_agent.ini`` file: ``/etc/neutron/plugins/ml2/openvswitch_agent.ini`` file:

View File

@ -487,7 +487,6 @@ Controller node
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
router_distributed = True router_distributed = True
core_plugin = ml2 core_plugin = ml2
service_plugins = router service_plugins = router
@ -548,13 +547,6 @@ Controller node
Network node Network node
------------ ------------
#. Configure common options. Edit the ``/etc/neutron/neutron.conf`` file:
.. code-block:: ini
[DEFAULT]
verbose = True
#. Configure the Open vSwitch agent. Edit the #. Configure the Open vSwitch agent. Edit the
``/etc/neutron/plugins/ml2/openvswitch_agent.ini`` file: ``/etc/neutron/plugins/ml2/openvswitch_agent.ini`` file:
@ -583,7 +575,6 @@ Network node
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver
external_network_bridge = external_network_bridge =
agent_mode = dvr_snat agent_mode = dvr_snat
@ -599,7 +590,6 @@ Network node
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver
dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq
enable_isolated_metadata = True enable_isolated_metadata = True
@ -625,7 +615,6 @@ Network node
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
nova_metadata_ip = controller nova_metadata_ip = controller
metadata_proxy_shared_secret = METADATA_SECRET metadata_proxy_shared_secret = METADATA_SECRET
@ -642,13 +631,6 @@ Network node
Compute nodes Compute nodes
------------- -------------
#. Configure common options. Edit the ``/etc/neutron/neutron.conf`` file:
.. code-block:: ini
[DEFAULT]
verbose = True
#. Configure the Open vSwitch agent. Edit the #. Configure the Open vSwitch agent. Edit the
``/etc/neutron/plugins/ml2/openvswitch_agent.ini`` file: ``/etc/neutron/plugins/ml2/openvswitch_agent.ini`` file:
@ -677,7 +659,6 @@ Compute nodes
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver
external_network_bridge = external_network_bridge =
agent_mode = dvr agent_mode = dvr
@ -693,7 +674,6 @@ Compute nodes
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
nova_metadata_ip = controller nova_metadata_ip = controller
metadata_proxy_shared_secret = METADATA_SECRET metadata_proxy_shared_secret = METADATA_SECRET

View File

@ -204,7 +204,6 @@ Controller node
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
core_plugin = ml2 core_plugin = ml2
service_plugins = router service_plugins = router
allow_overlapping_ips = True allow_overlapping_ips = True
@ -262,13 +261,6 @@ Network nodes
#. Configure the kernel to enable packet forwarding and disable reverse path #. Configure the kernel to enable packet forwarding and disable reverse path
filtering. Edit the ``/etc/sysctl.conf`` file: filtering. Edit the ``/etc/sysctl.conf`` file:
#. Configure common options. Edit the ``/etc/neutron/neutron.conf`` file:
.. code-block:: ini
[DEFAULT]
verbose = True
#. Configure the Linux bridge agent. Edit the #. Configure the Linux bridge agent. Edit the
``/etc/neutron/plugins/ml2/linuxbridge_agent.ini`` file: ``/etc/neutron/plugins/ml2/linuxbridge_agent.ini`` file:
@ -299,7 +291,6 @@ Network nodes
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
interface_driver = neutron.agent.linux.interface.BridgeInterfaceDriver interface_driver = neutron.agent.linux.interface.BridgeInterfaceDriver
external_network_bridge = external_network_bridge =
agent_mode = legacy agent_mode = legacy
@ -315,7 +306,6 @@ Network nodes
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
interface_driver = neutron.agent.linux.interface.BridgeInterfaceDriver interface_driver = neutron.agent.linux.interface.BridgeInterfaceDriver
dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq
enable_isolated_metadata = True enable_isolated_metadata = True
@ -341,7 +331,6 @@ Network nodes
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
nova_metadata_ip = controller nova_metadata_ip = controller
metadata_proxy_shared_secret = METADATA_SECRET metadata_proxy_shared_secret = METADATA_SECRET
@ -357,13 +346,6 @@ Network nodes
Compute nodes Compute nodes
------------- -------------
#. Configure common options. Edit the ``/etc/neutron/neutron.conf`` file:
.. code-block:: ini
[DEFAULT]
verbose = True
#. Configure the Linux bridge agent. Edit the #. Configure the Linux bridge agent. Edit the
``/etc/neutron/plugins/ml2/linuxbridge_agent.ini`` file: ``/etc/neutron/plugins/ml2/linuxbridge_agent.ini`` file:

View File

@ -215,7 +215,6 @@ Controller node
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
core_plugin = ml2 core_plugin = ml2
service_plugins = router service_plugins = router
allow_overlapping_ips = True allow_overlapping_ips = True
@ -273,13 +272,6 @@ Controller node
Network nodes Network nodes
------------- -------------
#. Configure common options. Edit the ``/etc/neutron/neutron.conf`` file:
.. code-block:: ini
[DEFAULT]
verbose = True
#. Configure the Open vSwitch agent. Edit the #. Configure the Open vSwitch agent. Edit the
``/etc/neutron/plugins/ml2/openvswitch_agent.ini`` file: ``/etc/neutron/plugins/ml2/openvswitch_agent.ini`` file:
@ -306,7 +298,6 @@ Network nodes
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver
external_network_bridge = external_network_bridge =
agent_mode = legacy agent_mode = legacy
@ -322,7 +313,6 @@ Network nodes
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver
dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq
enable_isolated_metadata = True enable_isolated_metadata = True
@ -348,7 +338,6 @@ Network nodes
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
nova_metadata_ip = controller nova_metadata_ip = controller
metadata_proxy_shared_secret = METADATA_SECRET metadata_proxy_shared_secret = METADATA_SECRET
@ -365,13 +354,6 @@ Network nodes
Compute nodes Compute nodes
------------- -------------
#. Configure common options. Edit the ``/etc/neutron/neutron.conf`` file:
.. code-block:: ini
[DEFAULT]
verbose = True
#. Configure the Open vSwitch agent. Edit the #. Configure the Open vSwitch agent. Edit the
``/etc/neutron/plugins/ml2/openvswitch_agent.ini`` file: ``/etc/neutron/plugins/ml2/openvswitch_agent.ini`` file:

View File

@ -369,7 +369,6 @@ Controller node
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
core_plugin = ml2 core_plugin = ml2
service_plugins = service_plugins =
@ -439,7 +438,6 @@ Controller node
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
interface_driver = neutron.agent.linux.interface.BridgeInterfaceDriver interface_driver = neutron.agent.linux.interface.BridgeInterfaceDriver
dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq
enable_isolated_metadata = True enable_isolated_metadata = True
@ -453,13 +451,6 @@ Controller node
Compute nodes Compute nodes
------------- -------------
#. Configure common options. Edit the ``/etc/neutron/neutron.conf`` file:
.. code-block:: ini
[DEFAULT]
verbose = True
#. Configure the Linux bridge agent. Edit the #. Configure the Linux bridge agent. Edit the
``/etc/neutron/plugins/ml2/linuxbridge_agent.ini`` file: ``/etc/neutron/plugins/ml2/linuxbridge_agent.ini`` file:

View File

@ -403,7 +403,6 @@ Controller node
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
core_plugin = ml2 core_plugin = ml2
service_plugins = service_plugins =
@ -467,7 +466,6 @@ Controller node
.. code-block:: ini .. code-block:: ini
[DEFAULT] [DEFAULT]
verbose = True
interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver
dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq dhcp_driver = neutron.agent.linux.dhcp.Dnsmasq
enable_isolated_metadata = True enable_isolated_metadata = True
@ -501,13 +499,6 @@ Controller node
Compute nodes Compute nodes
------------- -------------
#. Configure common options. Edit the ``/etc/neutron/neutron.conf`` file:
.. code-block:: ini
[DEFAULT]
verbose = True
#. Configure the Open vSwitch agent. Edit the #. Configure the Open vSwitch agent. Edit the
``/etc/neutron/plugins/ml2/openvswitch_agent.ini`` file: ``/etc/neutron/plugins/ml2/openvswitch_agent.ini`` file: