efuse/esp32: Fix get_coding_scheme() when CONFIG_SECURE_FLASH_ENC_ENABLED and LOG_LEVEL is Debug

Closes: https://github.com/espressif/esp-idf/issues/4862
This commit is contained in:
KonstantinKondrashov 2020-03-11 16:29:41 +08:00
parent b3410b9210
commit f59ef5e6ef

View file

@ -64,6 +64,6 @@ esp_efuse_coding_scheme_t esp_efuse_get_coding_scheme(esp_efuse_block_t blk)
scheme = EFUSE_CODING_SCHEME_REPEAT;
}
}
ESP_LOGD(TAG, "coding scheme %d", scheme);
ESP_EARLY_LOGD(TAG, "coding scheme %d", scheme);
return scheme;
}