summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/helper.c b/helper.c
index fb0e4a9..1bd12bc 100644
--- a/helper.c
+++ b/helper.c
@@ -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);