Allow debug to be enabled on a per-file basis...

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5143 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2005-03-05 04:04:55 +00:00
parent badc4dec46
commit c6cb8f9239
4 changed files with 32 additions and 0 deletions

View File

@@ -564,6 +564,10 @@ void ast_log(int level, const char *file, int line, const char *function, const
/* Ignore anything that never gets logged anywhere */
if (!(global_logmask & (1 << level)))
return;
/* Ignore anything other than the currently debugged file if there is one */
if ((level == __LOG_DEBUG) && !ast_strlen_zero(debug_filename) && strcasecmp(debug_filename, file))
return;
/* begin critical section */
ast_mutex_lock(&loglock);