only display a debug message if iaxdebug is enabled as well (issue #6673)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@15702 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2006-03-28 19:31:41 +00:00
parent 147ae336d2
commit 1ddae90e53

View File

@@ -6735,7 +6735,7 @@ static int socket_process(struct iax2_thread *thread)
if (iaxs[fr.callno]->last < fr.ts) {
iaxs[fr.callno]->last = fr.ts;
#if 1
if (option_debug)
if (option_debug && iaxdebug)
ast_log(LOG_DEBUG, "For call=%d, set last=%d\n", fr.callno, fr.ts);
#endif
}