diff options
author | Eric Laurent <elaurent@google.com> | 2014-06-04 20:02:57 -0700 |
---|---|---|
committer | Eric Laurent <elaurent@google.com> | 2014-06-04 20:02:57 -0700 |
commit | 24478d47fc631ab33208f4dd9d034abb6839c992 (patch) | |
tree | 386cecb452110d9959ce43eef557d05c822fea83 /services/audioflinger | |
parent | 62aaabb3905c61bb7acd6037414c206240a31c32 (diff) | |
download | frameworks_av-24478d47fc631ab33208f4dd9d034abb6839c992.zip frameworks_av-24478d47fc631ab33208f4dd9d034abb6839c992.tar.gz frameworks_av-24478d47fc631ab33208f4dd9d034abb6839c992.tar.bz2 |
AudioFlinger: fix PatchPanel debug log.
Bug: 14815883.
Change-Id: I71cf2ef74a96d3cdb27f2beb1b76b8979c738335
Diffstat (limited to 'services/audioflinger')
-rw-r--r-- | services/audioflinger/PatchPanel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/audioflinger/PatchPanel.cpp b/services/audioflinger/PatchPanel.cpp index 02b5094..6d84296 100644 --- a/services/audioflinger/PatchPanel.cpp +++ b/services/audioflinger/PatchPanel.cpp @@ -235,7 +235,7 @@ status_t AudioFlinger::PatchPanel::createAudioPatch(const struct audio_patch *pa param.addInt(String8(AudioParameter::keyInputSource), (int)patch->sinks[0].ext.mix.usecase.source); - ALOGW("createAudioPatch() AUDIO_PORT_TYPE_DEVICE setParameters %s", + ALOGV("createAudioPatch() AUDIO_PORT_TYPE_DEVICE setParameters %s", param.toString().string()); status = thread->setParameters(param.toString()); } @@ -354,7 +354,7 @@ status_t AudioFlinger::PatchPanel::releaseAudioPatch(audio_patch_handle_t handle } AudioParameter param; param.addInt(String8(AudioParameter::keyRouting), 0); - ALOGW("releaseAudioPatch() AUDIO_PORT_TYPE_DEVICE setParameters %s", + ALOGV("releaseAudioPatch() AUDIO_PORT_TYPE_DEVICE setParameters %s", param.toString().string()); status = thread->setParameters(param.toString()); } |