summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-02-21 23:42:54 +0000
committerBenny Prijono <bennylp@teluu.com>2006-02-21 23:42:54 +0000
commit986ddc29224e9bbb32248971a447c8b7dc01ff97 (patch)
treecf3b563f029c19117221b4ae6f6658c0a5559d2f
parentaf010b408a1e846ef51ed6fd31ea14ae7252d8c0 (diff)
Decrease log level from 4 to 5
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@209 74dad513-b988-da41-8d7b-12977e46ad98
-rw-r--r--pjmedia/src/pjmedia/pasound.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/pjmedia/src/pjmedia/pasound.c b/pjmedia/src/pjmedia/pasound.c
index a664d9fd..04ace974 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));