mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 12:16:00 +00:00
Turn a warning message into a debug message and do not treat two situations as errors when they are not.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@187036 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1160,7 +1160,7 @@ enum ast_bridge_result ast_rtp_instance_bridge(struct ast_channel *c0, struct as
|
||||
|
||||
/* Grab glue that binds each channel to something using the RTP engine */
|
||||
if (!(glue0 = ast_rtp_instance_get_glue(c0->tech->type)) || !(glue1 = ast_rtp_instance_get_glue(c1->tech->type))) {
|
||||
ast_log(LOG_WARNING, "Can't find native functions for channel '%s'\n", glue0 ? c1->name : c0->name);
|
||||
ast_debug(1, "Can't find native functions for channel '%s'\n", glue0 ? c1->name : c0->name);
|
||||
goto done;
|
||||
}
|
||||
|
||||
@@ -1256,7 +1256,7 @@ void ast_rtp_instance_early_bridge_make_compatible(struct ast_channel *c0, struc
|
||||
|
||||
/* Grab glue that binds each channel to something using the RTP engine */
|
||||
if (!(glue0 = ast_rtp_instance_get_glue(c0->tech->type)) || !(glue1 = ast_rtp_instance_get_glue(c1->tech->type))) {
|
||||
ast_log(LOG_WARNING, "Can't find native functions for channel '%s'\n", glue0 ? c1->name : c0->name);
|
||||
ast_debug(1, "Can't find native functions for channel '%s'\n", glue0 ? c1->name : c0->name);
|
||||
goto done;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user