From ec096b382325f14d6f50cd9758a952b532ef9f1a Mon Sep 17 00:00:00 2001 From: Konstantin Kondrashov Date: Thu, 15 May 2025 16:46:45 +0300 Subject: [PATCH] fix(log): Fix bin log config available only for log version 2 --- components/bootloader/Kconfig.log.settings | 1 + components/log/Kconfig.settings | 1 + 2 files changed, 2 insertions(+) diff --git a/components/bootloader/Kconfig.log.settings b/components/bootloader/Kconfig.log.settings index 8410ccb62b..7dec3dcaae 100644 --- a/components/bootloader/Kconfig.log.settings +++ b/components/bootloader/Kconfig.log.settings @@ -21,6 +21,7 @@ menu "Settings" config BOOTLOADER_LOG_MODE_BINARY bool "Binary Log Mode" select BOOTLOADER_LOG_MODE_BINARY_EN + depends on BOOTLOADER_LOG_VERSION_2 help Enables binary logging with host-side format string expansion. In this mode, the format argument of ESP_LOGx, ESP_EARLY_LOG, and ESP_DRAM_LOG macros is stored in a diff --git a/components/log/Kconfig.settings b/components/log/Kconfig.settings index 62a4be1d7e..34353fce22 100644 --- a/components/log/Kconfig.settings +++ b/components/log/Kconfig.settings @@ -21,6 +21,7 @@ menu "Settings" config LOG_MODE_BINARY bool "Binary Log Mode" select LOG_MODE_BINARY_EN + depends on LOG_VERSION_2 help Enables binary logging with host-side format string expansion. In this mode, the format argument of ESP_LOGx, ESP_EARLY_LOG, and ESP_DRAM_LOG macros is stored in a