aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-09-21 13:41:41 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-09-21 13:41:41 +0000
commit42877a4c92fe323e1d92627686b1da431863f064 (patch)
tree3887ff650b876b64a1c80f18c8a72e583d293316 /main
parent03f32acaba14633bc3b2990f058f0139ad791264 (diff)
Fix a regression in verbose logger processing.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.8@287863 f38db490-d61c-443f-a65b-d21fe96a405b
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 */