diff options
author | Don Slice <dslice@cumulusnetworks.com> | 2016-07-11 21:57:24 +0200 |
---|---|---|
committer | Don Slice <dslice@cumulusnetworks.com> | 2016-07-11 21:57:24 +0200 |
commit | 2caa9b39575933ec86f5ff54ceb83b3c4460518a (patch) | |
tree | a1348592a0d4b41464c41b42f6b9a6201b84b720 /ripngd | |
parent | pimd: static joins no longer worked (diff) | |
download | frr-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 'ripngd')
-rw-r--r-- | ripngd/ripng_main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ripngd/ripng_main.c b/ripngd/ripng_main.c index c05da0c9e..a1c71c856 100644 --- a/ripngd/ripng_main.c +++ b/ripngd/ripng_main.c @@ -203,6 +203,8 @@ main (int argc, char **argv) zlog_default = openzlog(progname, ZLOG_RIPNG, 0, LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON); + zprivs_init (&ripngd_privs); + zlog_set_file (NULL, LOG_DEFAULT_FILENAME, zlog_default->default_lvl); while (1) { @@ -272,7 +274,6 @@ main (int argc, char **argv) master = thread_master_create (); /* Library inits. */ - zprivs_init (&ripngd_privs); signal_init (master, array_size(ripng_signals), ripng_signals); cmd_init (1); vty_init (master); |