From f0424318479863edeed2a6a128e6d1ac926966e3 Mon Sep 17 00:00:00 2001 From: russell Date: Thu, 14 Jun 2007 19:39:12 +0000 Subject: Add a massive set of changes for converting to use the ast_debug() macro. (issue #9957, patches from mvanbaak, caio1982, critch, and dimas) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@69327 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_ices.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'apps/app_ices.c') diff --git a/apps/app_ices.c b/apps/app_ices.c index 5829231b4..c4bee4c5f 100644 --- a/apps/app_ices.c +++ b/apps/app_ices.c @@ -170,15 +170,13 @@ static int ices_exec(struct ast_channel *chan, void *data) /* Wait for audio, and stream */ ms = ast_waitfor(chan, -1); if (ms < 0) { - if (option_debug) - ast_log(LOG_DEBUG, "Hangup detected\n"); + ast_debug(1, "Hangup detected\n"); res = -1; break; } f = ast_read(chan); if (!f) { - if (option_debug) - ast_log(LOG_DEBUG, "Null frame == hangup() detected\n"); + ast_debug(1, "Null frame == hangup() detected\n"); res = -1; break; } -- cgit v1.2.3