[asterisk-commits] russell: branch 1.8 r282015 - /branches/1.8/main/pbx.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Aug 12 13:04:00 CDT 2010
Author: russell
Date: Thu Aug 12 13:03:56 2010
New Revision: 282015
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=282015
Log:
Put back pointer value output for ast_debug(), such that it is only removed for verbose output.
Modified:
branches/1.8/main/pbx.c
Modified: branches/1.8/main/pbx.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/main/pbx.c?view=diff&rev=282015&r1=282014&r2=282015
==============================================================================
--- branches/1.8/main/pbx.c (original)
+++ branches/1.8/main/pbx.c Thu Aug 12 13:03:56 2010
@@ -6853,16 +6853,16 @@
*local_contexts = tmp;
ast_hashtab_insert_safe(contexts_table, tmp); /*put this context into the tree */
ast_unlock_contexts();
- ast_debug(1, "Registered context '%s' ; registrar: %s\n", tmp->name, registrar);
- ast_verb(3, "Registered extension context '%s' ; registrar: %s\n", tmp->name, registrar);
+ ast_debug(1, "Registered context '%s'(%p) in table %p registrar: %s\n", tmp->name, tmp, contexts_table, registrar);
+ ast_verb(3, "Registered extension context '%s'; registrar: %s\n", tmp->name, registrar);
} else {
tmp->next = *local_contexts;
if (exttable)
ast_hashtab_insert_immediate(exttable, tmp); /*put this context into the tree */
*local_contexts = tmp;
- ast_debug(1, "Registered context '%s' ; registrar: %s\n", tmp->name, registrar);
- ast_verb(3, "Registered extension context '%s' ; registrar: %s\n", tmp->name, registrar);
+ ast_debug(1, "Registered context '%s'(%p) in local table %p; registrar: %s\n", tmp->name, tmp, exttable, registrar);
+ ast_verb(3, "Registered extension context '%s'; registrar: %s\n", tmp->name, registrar);
}
return tmp;
}
@@ -8194,11 +8194,11 @@
}
if (option_debug) {
if (tmp->matchcid) {
- ast_debug(1, "Added extension '%s' priority %d (CID match '%s') to %s\n",
- tmp->exten, tmp->priority, tmp->cidmatch, con->name);
+ ast_debug(1, "Added extension '%s' priority %d (CID match '%s') to %s (%p)\n",
+ tmp->exten, tmp->priority, tmp->cidmatch, con->name, con);
} else {
- ast_debug(1, "Added extension '%s' priority %d to %s\n",
- tmp->exten, tmp->priority, con->name);
+ ast_debug(1, "Added extension '%s' priority %d to %s (%p)\n",
+ tmp->exten, tmp->priority, con->name, con);
}
}
More information about the asterisk-commits
mailing list