diff options
| author | 2012-01-19 17:28:22 -0800 | |
|---|---|---|
| committer | 2012-01-19 17:28:22 -0800 | |
| commit | dde686e2bdf7ea679dae4fd4edbf94c71802dc28 (patch) | |
| tree | 6a2ea7e5a7d5a010adb25bf920dc41dee8243da8 /services/audioflinger/AudioFlinger.cpp | |
| parent | a1e873975704814416ee4d5023bf0740ec195ec0 (diff) | |
| parent | 08d3c6e5ba5c3e5fcc386b07efa709325d45b9ff (diff) | |
am 08d3c6e5: am 4f367f33: Merge "Rename (IF_)LOGI(_IF) to (IF_)ALOGI(_IF)"
* commit '08d3c6e5ba5c3e5fcc386b07efa709325d45b9ff':
Rename (IF_)LOGI(_IF) to (IF_)ALOGI(_IF)
Diffstat (limited to 'services/audioflinger/AudioFlinger.cpp')
| -rw-r--r-- | services/audioflinger/AudioFlinger.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/services/audioflinger/AudioFlinger.cpp b/services/audioflinger/AudioFlinger.cpp index 2426a3d5853e..b72c220fa6fc 100644 --- a/services/audioflinger/AudioFlinger.cpp +++ b/services/audioflinger/AudioFlinger.cpp @@ -180,13 +180,13 @@ void AudioFlinger::onFirstRef() if (rc) continue; - LOGI("Loaded %s audio interface from %s (%s)", audio_interfaces[i], + ALOGI("Loaded %s audio interface from %s (%s)", audio_interfaces[i], mod->name, mod->id); mAudioHwDevs.push(dev); if (!mPrimaryHardwareDev) { mPrimaryHardwareDev = dev; - LOGI("Using '%s' (%s.%s) as the primary audio interface", + ALOGI("Using '%s' (%s.%s) as the primary audio interface", mod->name, mod->id, audio_interfaces[i]); } } @@ -1463,7 +1463,7 @@ status_t AudioFlinger::PlaybackThread::readyToRun() { status_t status = initCheck(); if (status == NO_ERROR) { - LOGI("AudioFlinger's thread %p ready to run", this); + ALOGI("AudioFlinger's thread %p ready to run", this); } else { LOGE("No working audio driver found."); } @@ -1889,7 +1889,7 @@ bool AudioFlinger::MixerThread::threadLoop() double minimum = stats.minimum(); double maximum = stats.maximum(); cpu.resetStatistics(); - LOGI("CPU usage over past %.1f secs (%u mixer loops at %.1f mean ms per loop):\n us per mix loop: mean=%.0f stddev=%.0f min=%.0f max=%.0f\n %% of wall: mean=%.1f stddev=%.1f min=%.1f max=%.1f", + ALOGI("CPU usage over past %.1f secs (%u mixer loops at %.1f mean ms per loop):\n us per mix loop: mean=%.0f stddev=%.0f min=%.0f max=%.0f\n %% of wall: mean=%.1f stddev=%.1f min=%.1f max=%.1f", elapsed * .000000001, n, perLoop * .000001, mean * .001, stddev * .001, |