]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
silence some less important debug info
authorAnthony Minessale <anthony.minessale@gmail.com>
Wed, 14 May 2008 16:01:13 +0000 (16:01 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Wed, 14 May 2008 16:01:13 +0000 (16:01 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8397 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/endpoints/mod_sofia/sofia_presence.c
src/mod/formats/mod_local_stream/mod_local_stream.c
src/mod/formats/mod_sndfile/mod_sndfile.c

index 5077f86357cecf38c6fd8e233f40d5d52aecace6..d414ded6d83a2e9cbb8a26732b24464af73776a9 100644 (file)
@@ -806,7 +806,7 @@ static int sofia_presence_sub_callback(void *pArg, int argc, char **argv, char *
        }
        
        if (!(nh = nua_handle_by_call_id(profile->nua, call_id))) {
-               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Cannot find handle for %s\n", call_id);
+               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Cannot find handle for %s\n", call_id);
                return 0;
        }
 
index eb7fc9d24d3337333bf1bc5806c117324e599b76..f966cd73ac48b1818a03019805100c4f5a23d53b 100644 (file)
@@ -184,7 +184,7 @@ static void *SWITCH_THREAD_FUNC read_stream_thread(switch_thread_t *thread, void
                                return NULL;
                        }
 
-                       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Playing [%s] rate: %dhz\n", fname, source->rate);
+                       //switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Playing [%s] rate: %dhz\n", fname, source->rate);
 
                        while (RUNNING) {
                                switch_core_timer_next(&timer);
index cb15625640137fb09d7044ccd60ee05393ff0053..18719b0009c8c8c121c9822d5ff9e80d8c6ec693 100644 (file)
@@ -167,7 +167,7 @@ static switch_status_t sndfile_file_open(switch_file_handle_t *handle, const cha
                }
        }
 
-       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Opening File [%s] rate %dhz\n", path, context->sfinfo.samplerate);
+       //switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Opening File [%s] rate %dhz\n", path, context->sfinfo.samplerate);
        handle->samples = (unsigned int) context->sfinfo.frames;
        handle->samplerate = context->sfinfo.samplerate;
        handle->channels = (uint8_t) context->sfinfo.channels;