aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
authorbweschke <bweschke@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-05 22:18:07 +0000
committerbweschke <bweschke@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-05 22:18:07 +0000
commita067f7cf74ccb16d42ab576ae2f76b2e45eaf5e1 (patch)
treeca6868e844fc8e6e08a67be0ca95b5e3141dd5d4 /channel.c
parentf6834bc5951b015b2a86ba6d1b1ca8f2a476f712 (diff)
Make the "Avoided Initial Deadlock for '....', X retries!" a LOG_DEBUG msg instead of LOG_WARNING as this only has relevance to developers trying to resolve a possible problem. #6949
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@25094 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channel.c')
-rw-r--r--channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channel.c b/channel.c
index 9754b1bbd..81af67100 100644
--- a/channel.c
+++ b/channel.c
@@ -834,7 +834,7 @@ static struct ast_channel *channel_find_locked(const struct ast_channel *prev,
* c is surely not null, but we don't have the lock so cannot
* access c->name
*/
- ast_log(LOG_WARNING, "Failure, could not lock '%p' after %d retries!\n",
+ ast_log(LOG_DEBUG, "Failure, could not lock '%p' after %d retries!\n",
c, retries);
return NULL;