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 /isisd | |
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 'isisd')
-rw-r--r-- | isisd/isis_main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/isisd/isis_main.c b/isisd/isis_main.c index 343c683f4..f088bc1de 100644 --- a/isisd/isis_main.c +++ b/isisd/isis_main.c @@ -244,6 +244,8 @@ main (int argc, char **argv, char **envp) zlog_default = openzlog (progname, ZLOG_ISIS, 0, LOG_CONS | LOG_NDELAY | LOG_PID, LOG_DAEMON); + zprivs_init (&isisd_privs); + zlog_set_file (NULL, LOG_DEFAULT_FILENAME , zlog_default->default_lvl); /* for reload */ _argc = argc; @@ -332,7 +334,6 @@ main (int argc, char **argv, char **envp) /* * initializations */ - zprivs_init (&isisd_privs); signal_init (master, array_size (isisd_signals), isisd_signals); cmd_init (1); vty_init (master); |