From a6e136561e0fa6fe2d4ac8263663bfa87b27001a Mon Sep 17 00:00:00 2001 From: proddy Date: Sat, 25 Jan 2025 08:15:02 +0100 Subject: [PATCH] show boot partitions --- src/core/emsesp.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/emsesp.cpp b/src/core/emsesp.cpp index c7c5e798a..216724341 100644 --- a/src/core/emsesp.cpp +++ b/src/core/emsesp.cpp @@ -1637,10 +1637,10 @@ void EMSESP::start() { esp32React.begin(); #ifndef EMSESP_STANDALONE - LOG_INFO("EMS-ESP version %s (%s partition)", EMSESP_APP_VERSION, - esp_ota_get_running_partition()->label); // welcome message + LOG_INFO("EMS-ESP version %s", EMSESP_APP_VERSION); + LOG_DEBUG("Boot partition %s, Active partition %s", esp_ota_get_boot_partition()->label, esp_ota_get_running_partition()->label); #else - LOG_INFO("EMS-ESP version %s", EMSESP_APP_VERSION); // welcome message + LOG_INFO("EMS-ESP version %s", EMSESP_APP_VERSION); #endif LOG_DEBUG("System is running in Debug mode"); LOG_INFO("Last system reset reason Core0: %s, Core1: %s", system_.reset_reason(0).c_str(), system_.reset_reason(1).c_str());