Removed ast_log again for testing. Seems that it also causes dead-locks when it is used this way.

This commit is contained in:
Andreas Eversberg 2010-07-26 08:44:07 +02:00
parent fc6a1a6e99
commit db5c235146
1 changed files with 2 additions and 1 deletions

View File

@ -246,7 +246,8 @@ void chan_lcr_log(int type, const char *file, int line, const char *function, st
strncpy(ast_text, ast->name, sizeof(ast_text)-1);
ast_text[sizeof(ast_text)-1] = '\0';
ast_log(type, file, line, function, "[call=%s ast=%s] %s", call_text, ast_text, buffer);
// ast_log(type, file, line, function, "[call=%s ast=%s] %s", call_text, ast_text, buffer);
printf("[call=%s ast=%s] %s", call_text, ast_text, buffer);
ast_mutex_unlock(&log_lock);
}