dect
/
asterisk
Archived
13
0
Fork 0

Make sure DEBUG is really cranked up before we decide to flood the logs with messages about Internal timing when a channel has to make a decision about generating internal timing (eg - MOH)

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31840 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
bweschke 2006-06-03 22:08:25 +00:00
parent 07bc1d61dc
commit a2ba8183c1
1 changed files with 1 additions and 1 deletions

View File

@ -2097,7 +2097,7 @@ done:
int ast_internal_timing_enabled(struct ast_channel *chan)
{
int ret = ast_opt_internal_timing && chan->timingfd > -1;
if (option_debug > 3)
if (option_debug > 20)
ast_log(LOG_DEBUG, "Internal timing is %s (option_internal_timing=%d chan->timingfd=%d)\n", ret? "enabled": "disabled", ast_opt_internal_timing, chan->timingfd);
return ret;
}