diff --git a/config.c b/config.c index 4bc4246..9c9e407 100644 --- a/config.c +++ b/config.c @@ -235,11 +235,9 @@ static void scan_global_line(const char *s, struct config *cfg) } else if (1 == sscanf(s, " logging_level %d", &val)) { - if (!(cfg_ignore & CFG_IGNORE_VERBOSE)) { - + if (!(cfg_ignore & CFG_IGNORE_PRINT_LEVEL)) { if (val >= PRINT_LEVEL_MIN && val <= PRINT_LEVEL_MAX) cfg->print_level = val; - } } else if (1 == sscanf(s, " verbose %d", &val)) {