efuse: 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-04-15 20:52:50 +08:00
parent a2d0fb348b
commit 1490256968

View file

@ -197,7 +197,7 @@ 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;
}