Non-debugging messages are nice to log too

svn:r444
This commit is contained in:
Nick Mathewson 2003-09-11 22:13:13 +00:00
parent 529d3bc56f
commit 5082ee8ae0

View File

@ -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);