From dd22cc520f07be47f4d7a86aef6b0a4aca53dc12 Mon Sep 17 00:00:00 2001 From: rusefi Date: Thu, 19 May 2022 22:33:50 -0400 Subject: [PATCH] looks like some lines are longer than 128 --- firmware/util/loggingcentral.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/util/loggingcentral.h b/firmware/util/loggingcentral.h index d2554d3a86..0a188bba99 100644 --- a/firmware/util/loggingcentral.h +++ b/firmware/util/loggingcentral.h @@ -33,7 +33,7 @@ void scheduleLogging(Logging *logging); // Stores the result of one call to efiPrintfInternal in the queue to be copied out to the output buffer struct LogLineBuffer { - char buffer[128]; + char buffer[256]; }; template