pbx: Reduce verbosity while loading extensions

Each time the dial plan is reloaded, a lot of logs like these are generated:
"Added extension 'XXXXX' priority 1 to YYYYYYYYYYY"
This patch changes the log level for those logs.

ASTERISK-27084

Change-Id: I5662902161c50890997ddc56835d4cafb456c529
This commit is contained in:
krells
2018-01-09 18:29:48 +01:00
committed by Richard Mudgett
parent fa42549d4e
commit d5bcbd460e
3 changed files with 12 additions and 13 deletions

View File

@@ -2193,7 +2193,6 @@ static struct ast_config *config_text_file_load(const char *database, const char
/* If we get to this point, then we're loading regardless */
ast_clear_flag(&flags, CONFIG_FLAG_FILEUNCHANGED);
ast_debug(1, "Parsing %s\n", fn);
ast_verb(2, "Parsing '%s': Found\n", fn);
while (!feof(f)) {
lineno++;
if (fgets(buf, sizeof(buf), f)) {