Changing a NOTICE to a DEBUG.

(closes issue #10591, reported and patched by junky, with small modification by me)



git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@81333 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.0
Mark Michelson 18 years ago
parent ee6f91968c
commit f9d5c43b87

@ -2420,7 +2420,7 @@ static struct ast_conference *find_conf(struct ast_channel *chan, char *confno,
ast_log(LOG_NOTICE,"The requested confno is '%s'?\n", confno); ast_log(LOG_NOTICE,"The requested confno is '%s'?\n", confno);
AST_LIST_LOCK(&confs); AST_LIST_LOCK(&confs);
AST_LIST_TRAVERSE(&confs, cnf, list) { AST_LIST_TRAVERSE(&confs, cnf, list) {
ast_log(LOG_NOTICE,"Does conf %s match %s?\n", confno, cnf->confno); ast_debug(3,"Does conf %s match %s?\n", confno, cnf->confno);
if (!strcmp(confno, cnf->confno)) if (!strcmp(confno, cnf->confno))
break; break;
} }
@ -2458,7 +2458,7 @@ static struct ast_conference *find_conf(struct ast_channel *chan, char *confno,
return NULL; return NULL;
AST_STANDARD_APP_ARGS(args, parse); AST_STANDARD_APP_ARGS(args, parse);
ast_log(LOG_NOTICE,"Will conf %s match %s?\n", confno, args.confno); ast_debug(3,"Will conf %s match %s?\n", confno, args.confno);
if (!strcasecmp(args.confno, confno)) { if (!strcasecmp(args.confno, confno)) {
/* Bingo it's a valid conference */ /* Bingo it's a valid conference */
cnf = build_conf(args.confno, cnf = build_conf(args.confno,

Loading…
Cancel
Save