From: Mark Spencer Date: Mon, 8 Sep 2003 16:08:07 +0000 (+0000) Subject: Change printf to ast_log (bug #238) X-Git-Tag: 0.5.0~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=541a3eb0b17e8c32b582a34bed3b4a96aee0e07f;p=thirdparty%2Fasterisk.git Change printf to ast_log (bug #238) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1484 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/pbx.c b/pbx.c index bb571274a5..92289918ad 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);