summaryrefslogtreecommitdiffstats
path: root/audio_a2dp_hw
diff options
context:
space:
mode:
authorChristopher R. Palmer <crpalmer@gmail.com>2015-11-22 07:28:07 -0500
committerChristopher R. Palmer <crpalmer@gmail.com>2015-11-22 07:47:52 -0500
commitc2a0ac8965c0f90ac0dab7c8ec675c71cd6d4914 (patch)
tree538b4198bd35dd3216b006e76b5868d5cfdf0e9a /audio_a2dp_hw
parentba9f61a03c3e2fcf8c7075fb31b90d72468d9db2 (diff)
downloadandroid_system_bt-c2a0ac8965c0f90ac0dab7c8ec675c71cd6d4914.tar.gz
android_system_bt-c2a0ac8965c0f90ac0dab7c8ec675c71cd6d4914.tar.bz2
android_system_bt-c2a0ac8965c0f90ac0dab7c8ec675c71cd6d4914.zip
bt: Kill some logspam
Change-Id: I652684441160e2f5e806a7053ab9b574b2998356
Diffstat (limited to 'audio_a2dp_hw')
-rw-r--r--audio_a2dp_hw/audio_a2dp_hw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio_a2dp_hw/audio_a2dp_hw.c b/audio_a2dp_hw/audio_a2dp_hw.c
index 949647613..439b8b0e6 100644
--- a/audio_a2dp_hw/audio_a2dp_hw.c
+++ b/audio_a2dp_hw/audio_a2dp_hw.c
@@ -763,7 +763,7 @@ static uint32_t out_get_channels(const struct audio_stream *stream)
{
struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream;
- INFO("channels 0x%" PRIx32, out->common.cfg.channel_flags);
+ DEBUG("channels 0x%" PRIx32, out->common.cfg.channel_flags);
return out->common.cfg.channel_flags;
}
@@ -771,7 +771,7 @@ static uint32_t out_get_channels(const struct audio_stream *stream)
static audio_format_t out_get_format(const struct audio_stream *stream)
{
struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream;
- INFO("format 0x%x", out->common.cfg.format);
+ DEBUG("format 0x%x", out->common.cfg.format);
return out->common.cfg.format;
}