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

This commit is contained in:
KonstantinKondrashov 2020-03-11 16:36:11 +08:00
parent ae90d5f39f
commit 4c5d26085f

View file

@ -78,6 +78,6 @@ esp_efuse_coding_scheme_t esp_efuse_get_coding_scheme(esp_efuse_block_t blk)
} else {
scheme = EFUSE_CODING_SCHEME_RS;
}
ESP_LOGD(TAG, "coding scheme %d", scheme);
ESP_EARLY_LOGD(TAG, "coding scheme %d", scheme);
return scheme;
}