From 76db9dfec8b700cd9ae69d4cea7c23a785a7d1c0 Mon Sep 17 00:00:00 2001 From: Jonathan Hui Date: Mon, 11 May 2026 18:25:38 -0700 Subject: [PATCH] [cli] remove invalid log when tx buffer is full (#13091) In CliUartOutput, if otPlatUartFlush() fails when trying to send buffered output to make room for new output, it logs a warning using otLogWarnPlat. However, this warning is added to the same full buffer, which does not help and can cause further issues. This commit removes the offending log line as suggested in issue #7478. --- examples/apps/cli/cli_uart.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/apps/cli/cli_uart.cpp b/examples/apps/cli/cli_uart.cpp index 3ca7de8db..f25dacd20 100644 --- a/examples/apps/cli/cli_uart.cpp +++ b/examples/apps/cli/cli_uart.cpp @@ -342,7 +342,6 @@ static int CliUartOutput(void *aContext, const char *aFormat, va_list aArguments else { // Flush did not succeed, so abandon buffered output. - otLogWarnPlat("Failed to output CLI: %s", otThreadErrorToString(error)); break; } }