]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
STFU already
authorBrian West <brian@freeswitch.org>
Wed, 15 Aug 2012 02:10:43 +0000 (21:10 -0500)
committerBrian West <brian@freeswitch.org>
Wed, 15 Aug 2012 02:10:43 +0000 (21:10 -0500)
src/mod/applications/mod_spandsp/mod_spandsp.c

index d50628c37b9f844098d9767d21f7ab31692d1eba..6ee395770f82560638e327836b62ef65337d8c2d 100644 (file)
@@ -624,7 +624,7 @@ switch_status_t load_configuration(switch_bool_t reload)
                                        switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Missing <descriptor> name\n");
                                        switch_goto_status(SWITCH_STATUS_FALSE, done);
                                }
-                               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Adding tone_descriptor: %s\n", name);
+                               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG10, "Adding tone_descriptor: %s\n", name);
                                if (tone_descriptor_create(&descriptor, name, spandsp_globals.config_pool) != SWITCH_STATUS_SUCCESS) {
                                        switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Unable to allocate tone_descriptor: %s\n", name);
                                        switch_goto_status(SWITCH_STATUS_FALSE, done);
@@ -645,7 +645,7 @@ switch_status_t load_configuration(switch_bool_t reload)
                                                                "Unable to add tone_descriptor: %s, tone: %s.  (too many tones)\n", name, tone_name);
                                                switch_goto_status(SWITCH_STATUS_FALSE, done);
                                        }
-                                       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, 
+                                       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG10
                                                        "Adding tone_descriptor: %s, tone: %s(%d)\n", name, tone_name, id);
                                        /* add elements to tone */
                                        for (element = switch_xml_child(tone, "element"); element; element = switch_xml_next(element)) {
@@ -680,7 +680,7 @@ switch_status_t load_configuration(switch_bool_t reload)
                                                        switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Invalid element param.\n");
                                                        switch_goto_status(SWITCH_STATUS_FALSE, done);
                                                }
-                                               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, 
+                                               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG10
                                                                "Adding tone_descriptor: %s, tone: %s(%d), element (%d, %d, %d, %d)\n", name, tone_name, id, freq1, freq2, min, max);
                                                tone_descriptor_add_tone_element(descriptor, id, freq1, freq2, min, max);
                                        }