diff options
Diffstat (limited to 'zebra')
-rw-r--r-- | zebra/ChangeLog | 7 | ||||
-rw-r--r-- | zebra/irdp_main.c | 2 | ||||
-rw-r--r-- | zebra/main.c | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/zebra/ChangeLog b/zebra/ChangeLog index c38b47de..d22ba630 100644 --- a/zebra/ChangeLog +++ b/zebra/ChangeLog @@ -1,3 +1,10 @@ +2004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu> + + * main.c: (main) The 2nd argument to openzlog has been removed. + So stdout logging will no longer be enabled by default. + * irdp_main.c: (irdp_finish) Reduce severity of shutdown message + from LOG_WARNING to LOG_INFO. + 2004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu> * main.c: (sigint) Use zlog_notice for termination message. diff --git a/zebra/irdp_main.c b/zebra/irdp_main.c index 8f0250bf..10062db5 100644 --- a/zebra/irdp_main.c +++ b/zebra/irdp_main.c @@ -322,7 +322,7 @@ void irdp_finish() struct zebra_if *zi; struct irdp_interface *irdp; - zlog_warn("IRDP: Received shutdown notification."); + zlog_info("IRDP: Received shutdown notification."); for (node = listhead (iflist); node; node = nextnode (node)) { diff --git a/zebra/main.c b/zebra/main.c index 96420da6..019e8d20 100644 --- a/zebra/main.c +++ b/zebra/main.c @@ -224,7 +224,7 @@ main (int argc, char **argv) /* preserve my name */ progname = ((p = strrchr (argv[0], '/')) ? ++p : argv[0]); - zlog_default = openzlog (progname, ZLOG_STDOUT, ZLOG_ZEBRA, + zlog_default = openzlog (progname, ZLOG_ZEBRA, LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON); while (1) |