summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2013-05-01 17:15:26 +0000
committerRichard Mudgett <rmudgett@digium.com>2013-05-01 17:15:26 +0000
commit3a5a0f3f26fb0d25fc956349770499e5a5d061a7 (patch)
tree707b57b619403c140d4f0f058c017e8da42abdd7 /channels
parente51b6a37e934bea61082607601ce1016c9858f74 (diff)
Move some annoying chan_dahdi debug messages to level 5.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@387108 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_dahdi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c
index 6259cec03..81bfb4506 100644
--- a/channels/chan_dahdi.c
+++ b/channels/chan_dahdi.c
@@ -9605,15 +9605,15 @@ 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;
}