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.

Tracked-On: OAM-123446
Signed-off-by: Cui, Yuxin <[email protected]>
  • Loading branch information
cyxlily committed Aug 23, 2024
1 parent 133004c commit bc43398
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 bc43398

Please sign in to comment.