From bd0ae83b4983a7a4124b60b6da5fa669ef0e3e8f Mon Sep 17 00:00:00 2001 From: Benny Prijono Date: Tue, 21 Feb 2006 23:42:54 +0000 Subject: [PATCH] Decrease log level from 4 to 5 git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@209 74dad513-b988-da41-8d7b-12977e46ad98 --- pjmedia/src/pjmedia/pasound.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pjmedia/src/pjmedia/pasound.c b/pjmedia/src/pjmedia/pasound.c index a664d9fde..04ace9749 100644 --- a/pjmedia/src/pjmedia/pasound.c +++ b/pjmedia/src/pjmedia/pasound.c @@ -253,7 +253,7 @@ PJ_DEF(pj_snd_stream*) pj_snd_open_recorder( int index, return NULL; } - PJ_LOG(4,(THIS_FILE, "%s opening device %s for recording, sample rate=%d, " + PJ_LOG(5,(THIS_FILE, "%s opening device %s for recording, sample rate=%d, " "%d bits per sample, %d samples per buffer", (err==0 ? "Success" : "Error"), paDevInfo->name, param->samples_per_sec, @@ -332,7 +332,7 @@ PJ_DEF(pj_snd_stream*) pj_snd_open_player(int index, return NULL; } - PJ_LOG(4,(THIS_FILE, "%s opening device %s for playing, sample rate=%d, " + PJ_LOG(5,(THIS_FILE, "%s opening device %s for playing, sample rate=%d, " "%d bits per sample, %d samples per buffer", (err==0 ? "Success" : "Error"), paDevInfo->name, param->samples_per_sec, @@ -348,7 +348,7 @@ PJ_DEF(pj_snd_stream*) pj_snd_open_player(int index, */ PJ_DEF(pj_status_t) pj_snd_stream_start(pj_snd_stream *stream) { - PJ_LOG(4,(THIS_FILE, "Starting stream..")); + PJ_LOG(5,(THIS_FILE, "Starting stream..")); return Pa_StartStream(stream->stream); } @@ -365,7 +365,7 @@ PJ_DEF(pj_status_t) pj_snd_stream_stop(pj_snd_stream *stream) pj_thread_sleep(1); - PJ_LOG(4,(THIS_FILE, "Stopping stream..")); + PJ_LOG(5,(THIS_FILE, "Stopping stream..")); err = Pa_StopStream(stream->stream); return err; @@ -387,7 +387,7 @@ PJ_DEF(pj_status_t) pj_snd_stream_close(pj_snd_stream *stream) paDevInfo = Pa_GetDeviceInfo(stream->dev_index); - PJ_LOG(4,(THIS_FILE, "Closing %s: %lu underflow, %lu overflow", + PJ_LOG(5,(THIS_FILE, "Closing %s: %lu underflow, %lu overflow", paDevInfo->name, stream->underflow, stream->overflow));