cpu/esp8266: change of log output level in vendor code

This commit is contained in:
Gunar Schorcht 2019-12-12 08:09:38 +01:00
parent a3de59fec3
commit 3e3a6f7018

View File

@ -50,7 +50,7 @@ esp_err_t esp_base_mac_addr_get(uint8_t *mac)
uint8_t null_mac[6] = {0};
if (memcmp(base_mac_addr, null_mac, 6) == 0) {
ESP_LOGI(TAG, "Base MAC address is not set, read default base MAC address from BLK0 of EFUSE");
ESP_LOGD(TAG, "Base MAC address is not set, read default base MAC address from BLK0 of EFUSE");
return ESP_ERR_INVALID_MAC;
}