1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-28 21:53:48 +00:00

[preferences] Shorten log messages (#8982)

This commit is contained in:
Keith Burzinski
2025-05-31 14:23:47 -05:00
committed by GitHub
parent 9ba9674437
commit 5771bb4907
4 changed files with 17 additions and 18 deletions

View File

@@ -235,7 +235,7 @@ class ESP8266Preferences : public ESPPreferences {
if (s_prevent_write)
return false;
ESP_LOGD(TAG, "Saving preferences to flash...");
ESP_LOGD(TAG, "Saving");
SpiFlashOpResult erase_res, write_res = SPI_FLASH_RESULT_OK;
{
InterruptLock lock;
@@ -245,11 +245,11 @@ class ESP8266Preferences : public ESPPreferences {
}
}
if (erase_res != SPI_FLASH_RESULT_OK) {
ESP_LOGE(TAG, "Erase ESP8266 flash failed!");
ESP_LOGE(TAG, "Erasing failed");
return false;
}
if (write_res != SPI_FLASH_RESULT_OK) {
ESP_LOGE(TAG, "Write ESP8266 flash failed!");
ESP_LOGE(TAG, "Writing failed");
return false;
}
@@ -258,14 +258,14 @@ class ESP8266Preferences : public ESPPreferences {
}
bool reset() override {
ESP_LOGD(TAG, "Cleaning up preferences in flash...");
ESP_LOGD(TAG, "Erasing storage");
SpiFlashOpResult erase_res;
{
InterruptLock lock;
erase_res = spi_flash_erase_sector(get_esp8266_flash_sector());
}
if (erase_res != SPI_FLASH_RESULT_OK) {
ESP_LOGE(TAG, "Erase ESP8266 flash failed!");
ESP_LOGE(TAG, "Erasing failed");
return false;
}