diff options
| author | Android (Google) Code Review <android-gerrit@google.com> | 2009-07-03 08:18:22 -0700 |
|---|---|---|
| committer | The Android Open Source Project <initial-contribution@android.com> | 2009-07-03 08:18:22 -0700 |
| commit | 7a91dc11ac3edd101fc06ebbc89cca76314fc538 (patch) | |
| tree | f39366f9f1ddd7d225dc8767b5575a0756927913 /libs/audioflinger | |
| parent | 28dda652a2c776100f3ec94a3352564ac49149de (diff) | |
| parent | 2bbb80e183c6492689f8b10b2d0f5dfe9872a6ac (diff) | |
| download | frameworks_base-7a91dc11ac3edd101fc06ebbc89cca76314fc538.zip frameworks_base-7a91dc11ac3edd101fc06ebbc89cca76314fc538.tar.gz frameworks_base-7a91dc11ac3edd101fc06ebbc89cca76314fc538.tar.bz2 | |
am 2bbb80e1: Merge change 5994 into donut
Merge commit '2bbb80e183c6492689f8b10b2d0f5dfe9872a6ac'
* commit '2bbb80e183c6492689f8b10b2d0f5dfe9872a6ac':
Less logging in some places. More in others.
Diffstat (limited to 'libs/audioflinger')
| -rw-r--r-- | libs/audioflinger/AudioFlinger.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libs/audioflinger/AudioFlinger.cpp b/libs/audioflinger/AudioFlinger.cpp index 9783e54..a5b91f6 100644 --- a/libs/audioflinger/AudioFlinger.cpp +++ b/libs/audioflinger/AudioFlinger.cpp @@ -499,7 +499,8 @@ status_t AudioFlinger::setRouting(int mode, uint32_t routes, uint32_t mask) } #ifdef WITH_A2DP - LOGD("setRouting %d %d %d, tid %d, calling tid %d\n", mode, routes, mask, gettid(), IPCThreadState::self()->getCallingPid()); + LOGV("setRouting %d %d %d, tid %d, calling tid %d\n", mode, routes, mask, gettid(), + IPCThreadState::self()->getCallingPid()); if (mode == AudioSystem::MODE_NORMAL && (mask & AudioSystem::ROUTE_BLUETOOTH_A2DP)) { AutoMutex lock(&mLock); @@ -900,7 +901,7 @@ void AudioFlinger::handleRouteDisablesA2dp_l(int routes) } LOGV("mA2dpDisableCount decremented to %d", mA2dpDisableCount); } else { - LOGE("mA2dpDisableCount is already zero"); + LOGV("mA2dpDisableCount is already zero"); } } } |
