Skip to content

Commit 577d650

Browse files
committed
fix(esp_system): LOGD for the log printing in sleep process
1 parent c844ba4 commit 577d650

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/esp_hw_support/port/esp32c5/pmu_param.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ uint32_t get_act_hp_dbias(void)
439439
hp_cali_dbias = 31;
440440
}
441441
} else {
442-
ESP_HW_LOGW(TAG, "hp_cali_dbias not burnt in efuse, use default.");
442+
ESP_HW_LOGD(TAG, "hp_cali_dbias not burnt in efuse, use default.");
443443
}
444444
return hp_cali_dbias;
445445
}
@@ -463,7 +463,7 @@ uint32_t get_act_lp_dbias(void)
463463
lp_cali_dbias = 31;
464464
}
465465
} else {
466-
ESP_HW_LOGW(TAG, "hp_cali_dbias not burnt in efuse, use default.");
466+
ESP_HW_LOGD(TAG, "lp_cali_dbias not burnt in efuse, use default.");
467467
}
468468

469469
return lp_cali_dbias;

0 commit comments

Comments
 (0)