[svn-commits] trunk r26017 - /trunk/pbx.c
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Tue May 9 04:29:34 MST 2006
Author: rizzo
Date: Tue May 9 06:29:34 2006
New Revision: 26017
URL: http://svn.digium.com/view/asterisk?rev=26017&view=rev
Log:
change some log_warning into log_debug
Modified:
trunk/pbx.c
Modified: trunk/pbx.c
URL: http://svn.digium.com/view/asterisk/trunk/pbx.c?rev=26017&r1=26016&r2=26017&view=diff
==============================================================================
--- trunk/pbx.c (original)
+++ trunk/pbx.c Tue May 9 06:29:34 2006
@@ -3358,7 +3358,7 @@
tmp = *extcontexts;
if (registrar) {
/* XXX remove previous contexts from same registrar */
- ast_log(LOG_WARNING, "must remove any reg %s\n", registrar);
+ ast_log(LOG_DEBUG, "must remove any reg %s\n", registrar);
__ast_context_destroy(NULL,registrar);
while (tmp) {
lasttmp = tmp;
@@ -4692,7 +4692,7 @@
for (tmp = contexts; tmp; ) {
struct ast_context *next; /* next starting point */
for (; tmp; tmpl = tmp, tmp = tmp->next) {
- ast_log(LOG_WARNING, "check ctx %s %s\n", tmp->name, tmp->registrar);
+ ast_log(LOG_DEBUG, "check ctx %s %s\n", tmp->name, tmp->registrar);
if ( (!registrar || !strcasecmp(registrar, tmp->registrar)) &&
(!con || !strcasecmp(tmp->name, con->name)) )
break; /* found it */
@@ -4700,7 +4700,7 @@
if (!tmp) /* not found, we are done */
break;
ast_mutex_lock(&tmp->lock);
- ast_log(LOG_WARNING, "delete ctx %s %s\n", tmp->name, tmp->registrar);
+ ast_log(LOG_DEBUG, "delete ctx %s %s\n", tmp->name, tmp->registrar);
next = tmp->next;
if (tmpl)
tmpl->next = next;
More information about the svn-commits
mailing list