mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-13 19:40:31 +03:00
Merge pull request #9632 from mikeller/improve_error_formatting
Improved styling of error messages in CLI.
This commit is contained in:
commit
88cf45872f
1 changed files with 1 additions and 1 deletions
|
@ -452,7 +452,7 @@ void cliPrintLinef(const char *format, ...)
|
|||
static void cliPrintErrorVa(const char *cmdName, const char *format, va_list va)
|
||||
{
|
||||
if (cliErrorWriter) {
|
||||
cliPrintInternal(cliErrorWriter, "###ERROR: ");
|
||||
cliPrintInternal(cliErrorWriter, "###ERROR IN ");
|
||||
cliPrintInternal(cliErrorWriter, cmdName);
|
||||
cliPrintInternal(cliErrorWriter, ": ");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue