Open odyssey4me opened 10 years ago
Sorry for the copy paste response from issue https://github.com/rcbops/chef-cookbooks/issues/706
I am not able to determine that the verbose option in the l3_agent.ini is a valid option. In the upstream configuration file examples verbose is not listed in either master or havana/stable, "https://github.com/openstack/neutron/blob/master/etc/l3_agent.ini". Additionally, I found no wiki or example documentation for a verbose option in the "l3_agent.ini". Is this an option that you are setting in addition to or instead of using the provided debug option and if so are you seeing different logging output because of it?
While the documentation does not include the flag, it definitely does work. Enabling verbose = True
in l3_agent.ini
enables the output of the LOG.info
items in https://github.com/openstack/neutron/blob/master/neutron/agent/l3_agent.py and enabling debug = True
enables the output of the LOG.debug
items.
Neither the debug or verbose logging flags are included in the template. Add these and key them off
node["neutron"]["debug"]
andnode["neutron"]["verbose"]
as with the other Neutron conf/ini files.