UI: Increase size of log buffer

Dumping config json from nlohmann requires more than 4096 bytes
This commit is contained in:
Ruwen Hahn 2024-05-10 17:27:13 +02:00 committed by Ryan Foster
parent 976b200254
commit 43a1b30994

View File

@ -386,7 +386,7 @@ static inline bool too_many_repeated_entries(fstream &logFile, const char *msg,
static void do_log(int log_level, const char *msg, va_list args, void *param)
{
fstream &logFile = *static_cast<fstream *>(param);
char str[4096];
char str[8192];
#ifndef _WIN32
va_list args2;