[logger] fix crash on zephyr (#16330)

This commit is contained in:
tomaszduda23
2026-05-11 16:04:48 +02:00
committed by GitHub
parent 105842366e
commit 68534ea24d
2 changed files with 4 additions and 3 deletions
+3
View File
@@ -243,6 +243,9 @@ void Logger::dump_config() {
#endif
#ifdef USE_ZEPHYR
dump_crash_();
if (!device_is_ready(this->uart_dev_)) {
ESP_LOGE(TAG, " %s is not ready.", LOG_STR_ARG(get_uart_selection_()));
}
#endif
// Warn users that VERBOSE/VERY_VERBOSE logging impacts performance.
// Only the compiled log level matters — all log calls up to this level
+1 -3
View File
@@ -74,9 +74,7 @@ void Logger::pre_setup() {
break;
#endif
}
if (!device_is_ready(uart_dev)) {
ESP_LOGE(TAG, "%s is not ready.", LOG_STR_ARG(get_uart_selection_()));
} else {
if (device_is_ready(uart_dev)) {
this->uart_dev_ = uart_dev;
#if defined(USE_LOGGER_WAIT_FOR_CDC) && defined(USE_LOGGER_UART_SELECTION_USB_CDC)
uint32_t dtr = 0;