diff options
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/log.c | 19 | ||||
-rw-r--r-- | src/common/log.h | 2 |
2 files changed, 5 insertions, 16 deletions
diff --git a/src/common/log.c b/src/common/log.c index 397d27aaf1..791883c165 100644 --- a/src/common/log.c +++ b/src/common/log.c @@ -24,25 +24,24 @@ static INLINE const char *sev_to_string(int severity) { } } -static int loglevel = LOG_DEBUG; static logfile_t *logfiles = NULL; /* Format a log message into a fixed-sized buffer. (This is factored out * of 'logv' so that we never format a message more than once. */ static INLINE void format_msg(char *buf, size_t buf_len, - int severity, const char *funcname, - const char *format, va_list ap) + int severity, const char *funcname, + const char *format, va_list ap) { time_t t; struct timeval now; int n; buf_len -= 2; /* subtract 2 characters so we have room for \n\0 */ - + tor_gettimeofday(&now); t = (time_t)now.tv_sec; - + n = strftime(buf, buf_len, "%b %d %H:%M:%S", localtime(&t)); n += snprintf(buf+n, buf_len-n, ".%.3ld [%s] ", @@ -71,10 +70,8 @@ logv(int severity, const char *funcname, const char *format, va_list ap) char buf[10024]; int formatted = 0; logfile_t *lf; - + assert(format); - if (severity < loglevel) - return; for (lf = logfiles; lf; lf = lf->next) { if (severity < lf->loglevel || severity > lf->max_loglevel) continue; @@ -91,12 +88,6 @@ logv(int severity, const char *funcname, const char *format, va_list ap) } } -void -log_set_severity(int severity) -{ - loglevel = severity; -} - /* Outputs a message to stdout */ void _log(int severity, const char *format, ...) { diff --git a/src/common/log.h b/src/common/log.h index 3927629c8e..dace715d43 100644 --- a/src/common/log.h +++ b/src/common/log.h @@ -22,8 +22,6 @@ #define CHECK_PRINTF(formatIdx, firstArg) #endif -void log_set_severity(int severity); - void add_stream_log(int loglevel, const char *name, FILE *stream); int add_file_log(int severity, const char *filename); void close_logs(); |