From ef63811e6d603c1a9cffb20b3ef9bc72ff51ddf8 Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Wed, 5 Jul 2017 11:29:53 +0800 Subject: [PATCH] phy_init: fix log level for "PHY data partition validated" message --- components/esp32/phy_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp32/phy_init.c b/components/esp32/phy_init.c index ab62aad2ca..43e9c97ce5 100644 --- a/components/esp32/phy_init.c +++ b/components/esp32/phy_init.c @@ -119,7 +119,7 @@ const esp_phy_init_data_t* esp_phy_get_init_data() ESP_LOGE(TAG, "failed to validate PHY data partition"); return NULL; } - ESP_LOGE(TAG, "PHY data partition validated"); + ESP_LOGD(TAG, "PHY data partition validated"); return (const esp_phy_init_data_t*) (init_data_store + sizeof(phy_init_magic_pre)); } -- 2.40.0