From 9ab1d5c9f781888978df6a1807f45d93a50ff03f Mon Sep 17 00:00:00 2001 From: Valentin Buira Date: Fri, 11 Jul 2025 19:11:16 +0200 Subject: [PATCH] Increase log size to 8mb --- app/inputhelp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/inputhelp.cpp b/app/inputhelp.cpp index d705df0db..776bd1197 100644 --- a/app/inputhelp.cpp +++ b/app/inputhelp.cpp @@ -182,7 +182,7 @@ bool InputHelp::submitReportPending() const QString InputHelp::fullLog( bool isHtml ) { - qint64 limit = 500000; + qint64 limit = 8000000; QVector retLines = logHeader( isHtml ); QFile file( CoreUtils::logFilename() ); @@ -258,7 +258,7 @@ QVector InputHelp::logHeader( bool isHtml ) void InputHelp::submitReport() { - // There is a limit of 1MB on the remote service, send less, let say half of that + // There is a limit of 10MB on the remote service, send less, let say 8MB QString log = fullLog( false ); QByteArray logArr = log.toUtf8(); QString app = QStringLiteral( "input-%1-%2" ).arg( InputUtils::appPlatform() ).arg( CoreUtils::appVersion() );