]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
REALLY? STFU
authorBrian West <brian@freeswitch.org>
Thu, 18 Mar 2010 00:08:21 +0000 (00:08 +0000)
committerBrian West <brian@freeswitch.org>
Thu, 18 Mar 2010 00:08:21 +0000 (00:08 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@17036 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/xml_int/mod_xml_curl/mod_xml_curl.c

index f9607dc047fe04db5a49116199b034d6464e9d90..ac8e605235a6e93bb42575b7eec6c4cf25680c68 100644 (file)
@@ -379,7 +379,7 @@ static switch_xml_t xml_curl_fetch(const char *section, const char *tag_name, co
        for(i = 0; i < count; i++) {
                binding = &bindings_copy[i];
                if(binding->weight == 0) {
-                       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Copying [%s] to first_order[%d]\n", binding->url, pos);
+                       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG10, "Copying [%s] to first_order[%d]\n", binding->url, pos);
                        first_order[pos] = binding;
                        pos++;
                }
@@ -390,7 +390,7 @@ static switch_xml_t xml_curl_fetch(const char *section, const char *tag_name, co
        for(i = 0; i < count; i++) {
                binding = &bindings_copy[i];
                if(binding->weight != 0) {
-                       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Copying [%s] to first_order[%d]\n", binding->url, pos);
+                       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG10, "Copying [%s] to first_order[%d]\n", binding->url, pos);
                        first_order[pos] = binding;
                        pos++;
                }
@@ -438,7 +438,7 @@ static switch_xml_t xml_curl_fetch(const char *section, const char *tag_name, co
        pos = 0;
        for( ; pos < count && result == NULL; pos++) {
                binding = second_order[pos];
-               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Querying binding [%s]\n", binding->url);
+               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG10, "Querying binding [%s]\n", binding->url);
                result = xml_url_fetch(section, tag_name, key_name, key_value, params, (void*)binding);
        }