summaryrefslogtreecommitdiffstats
path: root/ospf6d
diff options
context:
space:
mode:
authorDon Slice <dslice@cumulusnetworks.com>2016-07-11 21:57:24 +0200
committerDon Slice <dslice@cumulusnetworks.com>2016-07-11 21:57:24 +0200
commit2caa9b39575933ec86f5ff54ceb83b3c4460518a (patch)
treea1348592a0d4b41464c41b42f6b9a6201b84b720 /ospf6d
parentpimd: static joins no longer worked (diff)
downloadfrr-2caa9b39575933ec86f5ff54ceb83b3c4460518a.tar.xz
frr-2caa9b39575933ec86f5ff54ceb83b3c4460518a.zip
all: add default log file if none are defined
Added a default log file named /var/log/quagga/Quagga.log to every daemon to capture log entries if no log file is defined. This also allows the capture of logged information prior to reading each daemon's config file. If a log file is defined manually, it will override this default file name. Ticket: CM-10987 Signed-off-by: Don Slice Reviewed By: Donald Sharp Testing Done: Manual testing
Diffstat (limited to 'ospf6d')
-rw-r--r--ospf6d/ospf6_main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ospf6d/ospf6_main.c b/ospf6d/ospf6_main.c
index 84c98b885..c989a5a10 100644
--- a/ospf6d/ospf6_main.c
+++ b/ospf6d/ospf6_main.c
@@ -321,6 +321,8 @@ main (int argc, char *argv[], char *envp[])
LOG_CONS|LOG_NDELAY|LOG_PID,
LOG_DAEMON);
zprivs_init (&ospf6d_privs);
+ zlog_set_file (NULL, LOG_DEFAULT_FILENAME, zlog_default->default_lvl);
+
/* initialize zebra libraries */
signal_init (master, array_size(ospf6_signals), ospf6_signals);
cmd_init (1);