From: Nick Mathewson Date: Thu, 11 Sep 2003 22:13:13 +0000 (+0000) Subject: Non-debugging messages are nice to log too X-Git-Tag: tor-0.0.2pre8~24 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5082ee8ae01b6855e791ba2e31268f7873027022;p=thirdparty%2Ftor.git Non-debugging messages are nice to log too svn:r444 --- diff --git a/src/common/log.c b/src/common/log.c index 8245bd4f5b..f38089a40f 100644 --- a/src/common/log.c +++ b/src/common/log.c @@ -29,7 +29,7 @@ logv(int severity, const char *funcname, const char *format, va_list ap) struct timeval now; assert(format); - if (severity > loglevel) + if (severity < loglevel) return; my_gettimeofday(&now);