summaryrefslogtreecommitdiff
path: root/res/ael
diff options
context:
space:
mode:
authorSean Bright <sean@malleable.com>2014-03-21 15:50:11 +0000
committerSean Bright <sean@malleable.com>2014-03-21 15:50:11 +0000
commitb44d324891b5d7a823b537777ca4fb00230e44dc (patch)
tree331f3cfadf278a6c49f777958ac8949eba6299d1 /res/ael
parent14942ecb171444838f952674af11850556437c90 (diff)
Make the AEL load process less chatty.
Switched a bunch of LOG_NOTICEs to ast_debug. This time without breaking the build. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@410994 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);