From e0a68a35f48621f068a4cdccbb28f87ea685ff3d Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Wed, 2 Aug 2023 15:39:52 +0200 Subject: [PATCH] raised output-buffer length to 1024*8 --- message_handler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/message_handler.cpp b/message_handler.cpp index 55d6d7e..7be2d67 100755 --- a/message_handler.cpp +++ b/message_handler.cpp @@ -6,7 +6,7 @@ #include #include -#define OUTPUT_LEN (1024) +#define OUTPUT_LEN (1024*8) static bool installedMsgHandler = false; static QtMsgType debugLevel = QtInfoMsg;