mirror of
https://github.com/asterisk/asterisk.git
synced 2026-07-07 23:29:20 -07:00
chan_dahdi.c, res_rtp_asterisk.c: Change some spammy debug messages to level 5.
ASTERISK-24337 #close Reported by: Rusty Newton ........ Merged revisions 429804 from http://svn.asterisk.org/svn/asterisk/branches/11 ........ Merged revisions 429805 from http://svn.asterisk.org/svn/asterisk/branches/13 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@429806 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -8787,11 +8787,13 @@ static int dahdi_write(struct ast_channel *ast, struct ast_frame *frame)
|
||||
return 0;
|
||||
}
|
||||
if (p->dialing) {
|
||||
ast_debug(5, "Dropping frame since I'm still dialing on %s...\n",ast_channel_name(ast));
|
||||
ast_debug(5, "Dropping frame since I'm still dialing on %s...\n",
|
||||
ast_channel_name(ast));
|
||||
return 0;
|
||||
}
|
||||
if (!p->owner) {
|
||||
ast_debug(5, "Dropping frame since there is no active owner on %s...\n",ast_channel_name(ast));
|
||||
ast_debug(5, "Dropping frame since there is no active owner on %s...\n",
|
||||
ast_channel_name(ast));
|
||||
return 0;
|
||||
}
|
||||
if (p->cidspill) {
|
||||
|
||||
@@ -4178,7 +4178,7 @@ static int bridge_p2p_rtp_write(struct ast_rtp_instance *instance, unsigned int
|
||||
ast_rtp_instance_get_remote_address(instance1, &remote_address);
|
||||
|
||||
if (ast_sockaddr_isnull(&remote_address)) {
|
||||
ast_debug(1, "Remote address is null, most likely RTP has been stopped\n");
|
||||
ast_debug(5, "Remote address is null, most likely RTP has been stopped\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user