From 32ff8f38fcb0928f5a05eb2f78c2c0cd2470c523 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Tue, 30 Mar 2004 03:15:23 +0000 Subject: [PATCH] add in a 'notice' log level svn:r1383 --- trunk/src/common/log.c | 1 + trunk/src/common/log.h | 1 + 2 files changed, 2 insertions(+) diff --git a/trunk/src/common/log.c b/trunk/src/common/log.c index 293c827816..681e08f125 100644 --- a/trunk/src/common/log.c +++ b/trunk/src/common/log.c @@ -21,6 +21,7 @@ static INLINE const char *sev_to_string(int severity) { switch(severity) { case LOG_DEBUG: return "debug"; case LOG_INFO: return "info"; + case LOG_NOTICE: return "notice"; case LOG_WARN: return "warn"; case LOG_ERR: return "err"; default: assert(0); return "UNKNOWN"; diff --git a/trunk/src/common/log.h b/trunk/src/common/log.h index 87a74bafe3..4656a21963 100644 --- a/trunk/src/common/log.h +++ b/trunk/src/common/log.h @@ -10,6 +10,7 @@ #else #define LOG_DEBUG 0 #define LOG_INFO 1 +#define LOG_NOTICE 2 #define LOG_WARN 3 #define LOG_ERR 4 #endif