diff options
-rw-r--r-- | helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -205,7 +205,7 @@ void helper_printfilter(struct Filter* f) void plog(const DebugLevel debugLevel, char *args, ...) { - if (debugLevel < _debugLevel) return; + if (debugLevel > _debugLevel) return; va_list argList; va_start(argList, args); vprintf(args, argList); |