]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
chan_dahdi.c, res_rtp_asterisk.c: Change some spammy debug messages to level 5.
authorRichard Mudgett <rmudgett@digium.com>
Thu, 18 Dec 2014 22:33:49 +0000 (22:33 +0000)
committerRichard Mudgett <rmudgett@digium.com>
Thu, 18 Dec 2014 22:33:49 +0000 (22:33 +0000)
ASTERISK-24337 #close
Reported by: Rusty Newton

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@429804 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_dahdi.c
res/res_rtp_asterisk.c

index 5610b004434ba15c3e860beefa0c4e47eeb72262..2471eb639bd957e670e24c5ac8b1789f3ba18680 100644 (file)
@@ -9602,15 +9602,17 @@ static int dahdi_write(struct ast_channel *ast, struct ast_frame *frame)
                return -1;
        }
        if (p->dialing) {
-               ast_debug(1, "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(1, "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) {
-               ast_debug(1, "Dropping frame since I've still got a callerid spill on %s...\n",
+               ast_debug(5, "Dropping frame since I've still got a callerid spill on %s...\n",
                        ast_channel_name(ast));
                return 0;
        }
index 18c6af782d39ba9c15568566090f94c55cb305ec..fc0f9d9ba6eafb30e0f14ec52ade43a93bb6dc68 100644 (file)
@@ -4066,7 +4066,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;
        }