diff options
author | Wei Wang <wvw@google.com> | 2020-04-17 11:20:33 -0700 |
---|---|---|
committer | alk3pInjection <webmaster@raspii.tech> | 2022-09-05 19:30:35 +0800 |
commit | c4e55881012f24676ccfcc533ec67616b36d2208 (patch) | |
tree | 54ff3098b9d66ca273086e3963e6ae1ae7c00179 | |
parent | 2087fa76c0dad7b090db931c2d28186efe2c6c29 (diff) |
Remove log spam when placing power hint call
Bug: 154338876
Test: build
Change-Id: I93b858a1991b18e281ca488351d2526d5f5dd4d8
-rw-r--r-- | hal/audio_perf.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hal/audio_perf.cpp b/hal/audio_perf.cpp index e2620a1b..d1270093 100644 --- a/hal/audio_perf.cpp +++ b/hal/audio_perf.cpp @@ -61,7 +61,7 @@ static hal_version connectPowerHalLocked() { android::hardware::power::V1_2::IPower::getService(); } if (gPowerHal_1_2_) { - ALOGI("Successfully connected to Power Hal Hidl service."); + ALOGV("Successfully connected to Power Hal Hidl service."); return HIDL_1_2; } else { // no more try on this handle @@ -77,7 +77,7 @@ static hal_version connectPowerHalLocked() { gPowerHal_Aidl_ = aidl::android::hardware::power::IPower::fromBinder(pwBinder); } if (gPowerHal_Aidl_) { - ALOGI("Successfully connected to Power Hal Aidl service."); + ALOGV("Successfully connected to Power Hal Aidl service."); return AIDL; } else { // no more try on this handle |