Skip to content

Commit

Permalink
Change ALOGE to ALOGI
Browse files Browse the repository at this point in the history
Change log level from ALOGE to ALOGI to fix error log.

Test done:
VtsHalThermalTargetTest
VtsHalThermalV1_0TargetTest
VtsHalThermalV1_1TargetTest
VtsHalThermalV2_0TargetTest
CtsThermalTestCases

Tracked-On: OAM-123446
Signed-off-by: Cui, Yuxin <[email protected]>
  • Loading branch information
cyxlily authored and sysopenci committed Aug 24, 2024
1 parent 7862996 commit 5cd6bfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thermal/aidl/default/Thermal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ void Thermal::CheckThermalServerity() {
if (res) {
ALOGE("Can not get temperature of type %d", kTemp_1_0.type);
} else {
ALOGE("Size of kTempThreshold.hotThrottlingThresholds=%f, kTemp_2_0.value=%f",kTempThreshold.hotThrottlingThresholds[5], kTemp_2_0.value);
ALOGI("Size of kTempThreshold.hotThrottlingThresholds=%f, kTemp_2_0.value=%f",kTempThreshold.hotThrottlingThresholds[5], kTemp_2_0.value);
for (size_t i = kTempThreshold.hotThrottlingThresholds.size() - 1; i > 0; i--) {
if (kTemp_2_0.value >= kTempThreshold.hotThrottlingThresholds[i]) {
kTemp_2_0.type = TemperatureType::CPU;
Expand Down

0 comments on commit 5cd6bfd

Please sign in to comment.