From a05b06f5f0374eebfc3480ac6ca6609de9a762f2 Mon Sep 17 00:00:00 2001 From: Matthew Kennedy Date: Thu, 1 Oct 2020 14:14:25 -0700 Subject: [PATCH] print red (#1843) --- firmware/controllers/core/error_handling.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/controllers/core/error_handling.cpp b/firmware/controllers/core/error_handling.cpp index 3e0f54416f..9ee57977d5 100644 --- a/firmware/controllers/core/error_handling.cpp +++ b/firmware/controllers/core/error_handling.cpp @@ -276,7 +276,7 @@ void firmwareError(obd_code_e code, const char *fmt, ...) { } #else - printf("firmwareError [%s]\r\n", fmt); + printf("\x1B[31m>>>>>>>>>> firmwareError [%s]\r\n\x1B[0m", fmt); va_list ap; va_start(ap, fmt);