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:24:41 +08:00
parent 2ebad4639e
commit 383cd73e38
1 changed files with 1 additions and 1 deletions

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;
}