Explorar el Código

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

KonstantinKondrashov hace 5 años
padre
commit
33eab40f2a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      components/efuse/src/esp32s2beta/esp_efuse_api.c

+ 1 - 1
components/efuse/src/esp32s2beta/esp_efuse_api.c

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