aboutsummaryrefslogtreecommitdiffstats
path: root/main/say.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-25 13:42:51 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-25 13:42:51 +0000
commit6116c57c53d2eeb8a2e8f1949a91a148878034c9 (patch)
tree40cedab34e161fa4a50ddf36086858d2f1eb892b /main/say.c
parent0d58f906de9c56198daa8eba38fe663b171a38ab (diff)
Convert so more logging to ast_debug (issue #10045, dimas)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@71557 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/say.c')
-rw-r--r--main/say.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/say.c b/main/say.c
index 7dce69a5c..bbc7239d5 100644
--- a/main/say.c
+++ b/main/say.c
@@ -1381,7 +1381,7 @@ static int ast_say_number_full_hu(struct ast_channel *chan, int num, const char
num = num % 1000000;
snprintf(fn, sizeof(fn), "digits/million");
} else {
- ast_log(LOG_DEBUG, "Number '%d' is too big for me\n", num);
+ ast_debug(1, "Number '%d' is too big for me\n", num);
res = -1;
}
}
@@ -6305,7 +6305,7 @@ static int gr_say_number_female(int num, struct ast_channel *chan, const char *i
int res;
char fn[256] = "";
- /* ast_log(LOG_DEBUG, "\n\n Saying number female %s %d \n\n",lang, num); */
+ /* ast_debug(1, "\n\n Saying number female %s %d \n\n",lang, num); */
if (num < 5) {
snprintf(fn, sizeof(fn), "digits/female-%d", num);
res = wait_file(chan, ints, fn, lang);