mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-20 08:40:16 +00:00
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
This commit is contained in:
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user