diff options
author | ajs <ajs> | 2004-12-10 22:43:17 +0000 |
---|---|---|
committer | ajs <ajs> | 2004-12-10 22:43:17 +0000 |
commit | 6df9707469f7a011ca5a1244d14fec65c2f96065 (patch) | |
tree | 063835d3ce31ecd9eeb40adf9df26fc929517735 /lib/log.c | |
parent | 617540bda70c3c83b8b5dda49d33a80a3be9a8af (diff) | |
download | quagga-6df9707469f7a011ca5a1244d14fec65c2f96065.tar.bz2 quagga-6df9707469f7a011ca5a1244d14fec65c2f96065.tar.xz |
2004-12-10 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
* log.c: (zlog_signal,_zlog_assert_failed) Change logging level back to
LOG_ERR instead of LOG_EMERG.
Diffstat (limited to 'lib/log.c')
-rw-r--r-- | lib/log.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -290,7 +290,7 @@ zlog_signal(int signo, const char *action) *s++ = '\n'; /* N.B. implicit priority is most severe */ -#define PRI LOG_EMERG +#define PRI LOG_ERR #define DUMP(FP) write(fileno(FP),buf,s-buf); if (!zlog_default) @@ -472,7 +472,7 @@ _zlog_assert_failed (const char *assertion, const char *file, { zlog_err("Assertion `%s' failed in file %s, line %u, function %s", assertion,file,line,(function ? function : "?")); - zlog_backtrace(LOG_EMERG); + zlog_backtrace(LOG_ERR); abort(); } |