Browse Source

Non-debugging messages are nice to log too

svn:r444
Nick Mathewson 22 years ago
parent
commit
5082ee8ae0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/common/log.c

+ 1 - 1
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);