aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-09-08 16:08:07 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-09-08 16:08:07 +0000
commit5facd91f37f0f8a283ced231f7a506868a0e1676 (patch)
treea0e33a73a6a58e0b9c5dfaf4151670c818457d03
parentaeb919ec93a7f10f61b2413d46b0fdb30206ac4f (diff)
Change printf to ast_log (bug #238)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1484 f38db490-d61c-443f-a65b-d21fe96a405b
-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);