]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
freetdm: put warning instead of error on circuit congestion
authorMoises Silva <moy@sangoma.com>
Tue, 31 Aug 2010 18:18:21 +0000 (14:18 -0400)
committerMoises Silva <moy@sangoma.com>
Tue, 31 Aug 2010 18:18:21 +0000 (14:18 -0400)
libs/freetdm/src/ftdm_io.c

index a4432cc76725334e3180b290ceaa6fc84e86541f..223eb340b8ba5a560facc09e244e498dfccd5acb 100644 (file)
@@ -1478,7 +1478,7 @@ FT_DECLARE(ftdm_status_t) ftdm_channel_open_by_group(uint32_t group_id, ftdm_dir
        ftdm_group_channel_use_count(group, &count);
 
        if (count >= group->chan_count) {
-               ftdm_log(FTDM_LOG_ERROR, "All circuits are busy (%d channels used out of %d available).\n", count, group->chan_count);
+               ftdm_log(FTDM_LOG_WARNING, "All circuits are busy (%d channels used out of %d available).\n", count, group->chan_count);
                *ftdmchan = NULL;
                return FTDM_FAIL;
        }
@@ -1575,7 +1575,7 @@ FT_DECLARE(ftdm_status_t) ftdm_channel_open_by_span(uint32_t span_id, ftdm_direc
        ftdm_span_channel_use_count(span, &count);
 
        if (count >= span->chan_count) {
-               ftdm_log(FTDM_LOG_ERROR, "All circuits are busy: active=%i max=%i.\n", count, span->chan_count);
+               ftdm_log(FTDM_LOG_WARNING, "All circuits are busy: active=%i max=%i.\n", count, span->chan_count);
                return FTDM_FAIL;
        }