summaryrefslogtreecommitdiff
path: root/pbx.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2003-09-08 16:08:07 +0000
committerMark Spencer <markster@digium.com>2003-09-08 16:08:07 +0000
commit541a3eb0b17e8c32b582a34bed3b4a96aee0e07f (patch)
treea0e33a73a6a58e0b9c5dfaf4151670c818457d03 /pbx.c
parent328897248a4692a18ccb77d8a11b4b71d7e6dc71 (diff)
Change printf to ast_log (bug #238)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1484 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'pbx.c')
-rwxr-xr-xpbx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbx.c b/pbx.c
index bb571274a..92289918a 100755
--- a/pbx.c
+++ b/pbx.c
@@ -1053,7 +1053,7 @@ void pbx_substitute_variables_helper(struct ast_channel *c,const char *cp1,char
/* Evaluate expression */
cp4 = ast_expr(vars);
- printf("Expression is '%s'\n", cp4);
+ ast_log(LOG_DEBUG, "Expression is '%s'\n", cp4);
if (cp4) {
length = strlen(cp4);