From 2df6e04fe06869c06bf2eb0933b1262ae36a7116 Mon Sep 17 00:00:00 2001 From: Dan Prince Date: Wed, 17 Dec 2014 08:57:10 -0500 Subject: [PATCH] os-net-config: log at log level info again... We standardized the logging options in os-net-config in I31005e4e10372018685a93dc2f80619f16c513d9. Previously os-net-config was functionally logging at the info level however, which is what we want. This patch switches all the os-net-config commands to use -v INFO level logging again. Change-Id: Ia90a83da27cd4767425c4913fd150d5df5c3163e --- elements/neutron-openvswitch-agent/bin/init-neutron-ovs | 2 +- .../os-refresh-config/configure.d/20-os-net-config | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/elements/neutron-openvswitch-agent/bin/init-neutron-ovs b/elements/neutron-openvswitch-agent/bin/init-neutron-ovs index 6acced6a2..ecb7f8795 100755 --- a/elements/neutron-openvswitch-agent/bin/init-neutron-ovs +++ b/elements/neutron-openvswitch-agent/bin/init-neutron-ovs @@ -113,4 +113,4 @@ if [ -n "$PUBLIC_INTERFACE_ROUTE" ]; then fi fi -os-net-config -c /etc/os-net-config/neutron-openvswitch-agent.conf -d +os-net-config -c /etc/os-net-config/neutron-openvswitch-agent.conf -v diff --git a/elements/os-net-config/os-refresh-config/configure.d/20-os-net-config b/elements/os-net-config/os-refresh-config/configure.d/20-os-net-config index 26717ede3..3756640db 100755 --- a/elements/os-net-config/os-refresh-config/configure.d/20-os-net-config +++ b/elements/os-net-config/os-refresh-config/configure.d/20-os-net-config @@ -4,5 +4,5 @@ set -eux NET_CONFIG=$(os-apply-config --key os_net_config --type raw --key-default '') if [ -n "$NET_CONFIG" ]; then - os-net-config -c /etc/os-net-config/config.json -d + os-net-config -c /etc/os-net-config/config.json -v fi