aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
Diffstat (limited to 'main')
-rw-r--r--main/logger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/logger.c b/main/logger.c
index 3593c7c7c..25f252f31 100644
--- a/main/logger.c
+++ b/main/logger.c
@@ -1136,7 +1136,7 @@ void ast_log(int level, const char *file, int line, const char *function, const
return;
/* Ignore anything that never gets logged anywhere */
- if (!(global_logmask & (1 << level)))
+ if (level != __LOG_VERBOSE && !(global_logmask & (1 << level)))
return;
/* Build string */