mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 20:04:50 +00:00
Revert improper patch from bug #4294
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5744 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
2
logger.c
2
logger.c
@@ -671,7 +671,7 @@ void ast_log(int level, const char *file, int line, const char *function, const
|
||||
|
||||
va_list ap;
|
||||
|
||||
if ((!option_verbose && (level == __LOG_VERBOSE)) || (!option_debug && (level == __LOG_DEBUG))) {
|
||||
if (!option_verbose && !option_debug && (level == __LOG_DEBUG)) {
|
||||
return;
|
||||
}
|
||||
/* Ignore anything that never gets logged anywhere */
|
||||
|
Reference in New Issue
Block a user