summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--channels/chan_dahdi.c6
-rw-r--r--res/res_rtp_asterisk.c2
2 files changed, 5 insertions, 3 deletions
diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c
index 8ef0cec30..ddaeccd4f 100644
--- a/channels/chan_dahdi.c
+++ b/channels/chan_dahdi.c
@@ -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) {
diff --git a/res/res_rtp_asterisk.c b/res/res_rtp_asterisk.c
index 2d7bafd02..0a652b081 100644
--- a/res/res_rtp_asterisk.c
+++ b/res/res_rtp_asterisk.c
@@ -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;
}