summaryrefslogtreecommitdiff
path: root/res/ael
diff options
context:
space:
mode:
authorSean Bright <sean@malleable.com>2014-03-21 15:14:13 +0000
committerSean Bright <sean@malleable.com>2014-03-21 15:14:13 +0000
commit922d0b7565570000fb4e8f09cf3008c9d0542b53 (patch)
tree6583433b0ff4e1b9062f998cf5c88792b237062f /res/ael
parent3c16865fc273291f72564678f72a7e1298fe8540 (diff)
Make the AEL load process less chatty.
Switched a bunch of LOG_NOTICEs to ast_debug. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@410981 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/ael')
-rw-r--r--res/ael/ael.flex2
-rw-r--r--res/ael/ael_lex.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/res/ael/ael.flex b/res/ael/ael.flex
index dab6ac05c..0b6ec32f1 100644
--- a/res/ael/ael.flex
+++ b/res/ael/ael.flex
@@ -885,7 +885,7 @@ static void setup_filestack(char *fnamebuf2, int fnamebuf_siz, glob_t *globbuf,
ast_log(LOG_ERROR, "fread() failed: %s\n", strerror(errno));
}
buffer[stats.st_size] = 0;
- ast_log(LOG_NOTICE," --Read in included file %s, %d chars\n",fnamebuf2, (int)stats.st_size);
+ ast_debug(1, " --Read in included file %s, %d chars\n",fnamebuf2, (int)stats.st_size);
fclose(in1);
if (include_stack[include_stack_index].fname) {
free(include_stack[include_stack_index].fname);
diff --git a/res/ael/ael_lex.c b/res/ael/ael_lex.c
index e255fab70..6aec03bee 100644
--- a/res/ael/ael_lex.c
+++ b/res/ael/ael_lex.c
@@ -3458,7 +3458,7 @@ static void setup_filestack(char *fnamebuf2, int fnamebuf_siz, glob_t *globbuf,
ast_log(LOG_ERROR, "fread() failed: %s\n", strerror(errno));
}
buffer[stats.st_size] = 0;
- ast_log(LOG_NOTICE," --Read in included file %s, %d chars\n",fnamebuf2, (int)stats.st_size);
+ ast_debug(1, " --Read in included file %s, %d chars\n",fnamebuf2, (int)stats.st_size);
fclose(in1);
if (include_stack[include_stack_index].fname) {
free(include_stack[include_stack_index].fname);