summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2008-04-01 17:24:45 +0000
committerJoshua Colp <jcolp@digium.com>2008-04-01 17:24:45 +0000
commitdcf4e46d8f0064dd7635763aecaeae9a442766d0 (patch)
treedc066c21d16202efb22d8f9cb382febf1ed98753 /channels
parent4dbacf6bbc313e711ae43cf6281acfd732595c69 (diff)
Demote a log message down to a warning.
(closes issue #12345) Reported by: caio1982 Patches: limit_msg.diff uploaded by caio1982 (license 22) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@112155 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 5badfc7e7..1982f1fc8 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -4472,7 +4472,7 @@ static int update_call_counter(struct sip_pvt *fup, int event)
/* If call limit is active and we have reached the limit, reject the call */
if (*call_limit > 0 ) {
if (*inuse >= *call_limit) {
- ast_log(LOG_ERROR, "Call %s %s '%s' rejected due to usage limit of %d\n", outgoing ? "to" : "from", u ? "user":"peer", name, *call_limit);
+ ast_log(LOG_WARNING, "Call %s %s '%s' rejected due to usage limit of %d\n", outgoing ? "to" : "from", u ? "user":"peer", name, *call_limit);
if (u)
unref_user(u);
else