diff options
| author | hasso <hasso> | 2004-12-24 00:14:50 +0000 | 
|---|---|---|
| committer | hasso <hasso> | 2004-12-24 00:14:50 +0000 | 
| commit | 529d65b3db6a2a79cbdf9ca3a1aa915ce5776286 (patch) | |
| tree | bc51f1350daf8c8f47cd87478f416ba812cfcff9 /isisd/isis_main.c | |
| parent | 2b70200c5797ca60acf2011fe62f33fa161be54b (diff) | |
zlog_* cleanup. Level of debug messages to LOG_DEBUG.
Diffstat (limited to 'isisd/isis_main.c')
| -rw-r--r-- | isisd/isis_main.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/isisd/isis_main.c b/isisd/isis_main.c index 027e47b4..a2f028be 100644 --- a/isisd/isis_main.c +++ b/isisd/isis_main.c @@ -137,7 +137,7 @@ Report bugs to http://bugzilla.quagga.net\n", progname);  void  reload ()  { -  zlog_info ("Reload"); +  zlog_debug ("Reload");    /* FIXME: Clean up func call here */    vty_finish ();    execve (_progpath, _argv, _envp); @@ -156,7 +156,7 @@ terminate (int i)  void  sighup (void)  { -  zlog_info ("SIGHUP received"); +  zlog_debug ("SIGHUP received");    reload ();    return; @@ -179,7 +179,7 @@ sigterm (void)  void  sigusr1 (void)  { -  zlog_info ("SIGUSR1 received"); +  zlog_debug ("SIGUSR1 received");    zlog_rotate (NULL);  } @@ -326,7 +326,7 @@ main (int argc, char **argv, char **envp)    /* Print banner. */    zlog_notice ("Quagga-ISISd %s starting: vty@%d", QUAGGA_VERSION, vty_port);  #ifdef HAVE_IPV6 -  zlog_info ("IPv6 enabled"); +  zlog_debug ("IPv6 enabled");  #endif    /* Start finite state machine. */    while (thread_fetch (master, &thread))  | 
