summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNuman Siddique <nusiddiq@redhat.com>2017-11-08 14:28:49 +0530
committerBen Pfaff <blp@ovn.org>2017-11-27 11:15:55 -0800
commit2abbe32153b7e4719b39f477b35e7cc40231338a (patch)
treea87991eebabafe154b243c4021a9bcbcfc70ee3a
parent7c8ef11c7571e377975b297a2df5564d481c467b (diff)
downloadopenvswitch-2abbe32153b7e4719b39f477b35e7cc40231338a.tar.gz
ovn-ctl: Add -vfile:info option to OVN_NB/SB_LOG options
In the RHEL environment, when OVN db servers are started using ovn-ctl, log files are empty. Adding "-vfile:info" option to ovsdb-server is resolving this issue. Running 'ovs-apptctl -t .. vlog/reopen" results in the logs appearing in the log files. This issue is seen with 2.7.2. "-vfile:info" option is passed to ovn-northd and ovn-controller when starting. There is no harm in adding this to OVN db servers. Signed-off-by: Numan Siddique <nusiddiq@redhat.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
-rwxr-xr-xovn/utilities/ovn-ctl4
1 files changed, 2 insertions, 2 deletions
diff --git a/ovn/utilities/ovn-ctl b/ovn/utilities/ovn-ctl
index 9ac538a79..15bc2c928 100755
--- a/ovn/utilities/ovn-ctl
+++ b/ovn/utilities/ovn-ctl
@@ -341,8 +341,8 @@ set_defaults () {
OVN_CONTROLLER_LOG="-vconsole:emer -vsyslog:err -vfile:info"
OVN_NORTHD_LOG="-vconsole:emer -vsyslog:err -vfile:info"
OVN_NORTHD_LOGFILE=""
- OVN_NB_LOG="-vconsole:off"
- OVN_SB_LOG="-vconsole:off"
+ OVN_NB_LOG="-vconsole:off -vfile:info"
+ OVN_SB_LOG="-vconsole:off -vfile:info"
OVN_NB_LOGFILE="$logdir/ovsdb-server-nb.log"
OVN_SB_LOGFILE="$logdir/ovsdb-server-sb.log"