diff --git a/main/logger.c b/main/logger.c
index 3593c7c7cd256dcbcd91b20a66736955592a8191..25f252f31cc962d480572ef15312045c026ce879 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 */