diff --git a/main/logger.c b/main/logger.c index 3b66854a15..698e782ebf 100644 --- a/main/logger.c +++ b/main/logger.c @@ -217,7 +217,7 @@ static unsigned int make_components(const char *s, int lineno) w = ast_skip_blanks(w); if (!strcmp(w, "*")) { - res = 0xFFFF; + res = 0xFFFFFFFF; break; } else for (x = 0; x < ARRAY_LEN(levels); x++) { if (levels[x] && !strcasecmp(w, levels[x])) {