summaryrefslogtreecommitdiffstats
path: root/chan_lcr.c
diff options
context:
space:
mode:
authorAndreas Eversberg2010-07-05 09:42:53 +0200
committerAndreas Eversberg2010-07-05 09:42:53 +0200
commit46d07c5968b7de37943182f85499b30735145e03 (patch)
tree15d345c2471723a7883287e7eb4754e09b2445a9 /chan_lcr.c
parentHopefully fixed the double log bug that causes so much trouble. (diff)
downloadlcr-46d07c5968b7de37943182f85499b30735145e03.tar.gz
lcr-46d07c5968b7de37943182f85499b30735145e03.tar.xz
lcr-46d07c5968b7de37943182f85499b30735145e03.zip
Disabled log_ast and replaced it by simple printf.
Diffstat (limited to 'chan_lcr.c')
-rw-r--r--chan_lcr.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/chan_lcr.c b/chan_lcr.c
index 38f969b..a091fdb 100644
--- a/chan_lcr.c
+++ b/chan_lcr.c
@@ -254,8 +254,9 @@ void chan_lcr_log(int type, const char *file, int line, const char *function, st
if (ast)
strncpy(ast_text, ast->name, sizeof(ast_text)-1);
ast_text[sizeof(ast_text)-1] = '\0';
-
- ast_log(type, file, line, function, "[call=%s ast=%s] %s", call_text, ast_text, buffer);
+
+printf("\n[call=%s ast=%s] %s\n", call_text, ast_text, buffer);
+// ast_log(type, file, line, function, "[call=%s ast=%s] %s", call_text, ast_text, buffer);
ast_mutex_unlock(&log_lock);
lock_debug("l");
@@ -2015,8 +2016,8 @@ static void send_digit_to_chan(struct ast_channel * ast, char digit )
ast_playtones_start(ast,0,dtmf_tones[15], 0);
else {
/* not handled */
- ast_log(LOG_DEBUG, "Unable to handle DTMF tone "
- "'%c' for '%s'\n", digit, ast->name);
+// ast_log(LOG_DEBUG, "Unable to handle DTMF tone "
+// "'%c' for '%s'\n", digit, ast->name);
}
}