Index: main/pbx.c =================================================================== --- main/pbx.c (revision 83433) +++ main/pbx.c (working copy) @@ -4872,21 +4872,11 @@ if (tmp->priority == PRIORITY_HINT) ast_add_hint(tmp); } - 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); - } else { - ast_debug(1, "Added extension '%s' priority %d to %s\n", - tmp->exten, tmp->priority, con->name); - } - } - if (tmp->matchcid) { - ast_verb(3, "Added extension '%s' priority %d (CID match '%s')to %s\n", + ast_debug(1, "Added extension '%s' priority %d (CID match '%s') to %s\n", tmp->exten, tmp->priority, tmp->cidmatch, con->name); } else { - ast_verb(3, "Added extension '%s' priority %d to %s\n", + ast_debug(1, "Added extension '%s' priority %d to %s\n", tmp->exten, tmp->priority, con->name); }