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 /watchquagga | |
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 'watchquagga')
-rw-r--r-- | watchquagga/watchquagga.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/watchquagga/watchquagga.c b/watchquagga/watchquagga.c index e882653e3..2a237efb6 100644 --- a/watchquagga/watchquagga.c +++ b/watchquagga/watchquagga.c @@ -1337,6 +1337,8 @@ main(int argc, char **argv) zlog_default = openzlog(progname, ZLOG_NONE, 0, LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON); + zlog_set_file (NULL, LOG_DEFAULT_FILENAME, zlog_default->default_lvl); + zlog_set_level(NULL, ZLOG_DEST_MONITOR, ZLOG_DISABLED); if (daemon_mode) { |