From 5078cdb0f699b4257884228f7ad238489de9ae9c Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Wed, 29 Apr 2009 03:24:53 +0000 Subject: [PATCH] fail over to default if desired stream is not found git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13186 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/formats/mod_local_stream/mod_local_stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/formats/mod_local_stream/mod_local_stream.c b/src/mod/formats/mod_local_stream/mod_local_stream.c index e8521570a9..9cd460310d 100644 --- a/src/mod/formats/mod_local_stream/mod_local_stream.c +++ b/src/mod/formats/mod_local_stream/mod_local_stream.c @@ -318,7 +318,7 @@ static switch_status_t local_stream_file_open(switch_file_handle_t *handle, cons } } else { if (!switch_stristr("default", alt_path) && !switch_stristr("default", path)) { - switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Unknown source %s, trying 'default'\n", path); + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Unknown source %s, trying 'default'\n", path); free(alt_path); path = "default"; goto top;