From 43a1b309940b7bb7a92fdcd019bd011ef762621f Mon Sep 17 00:00:00 2001 From: Ruwen Hahn Date: Fri, 10 May 2024 17:27:13 +0200 Subject: [PATCH] UI: Increase size of log buffer Dumping config json from nlohmann requires more than 4096 bytes --- UI/obs-app.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/obs-app.cpp b/UI/obs-app.cpp index 853630a02..c1ba6d6a3 100644 --- a/UI/obs-app.cpp +++ b/UI/obs-app.cpp @@ -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(param); - char str[4096]; + char str[8192]; #ifndef _WIN32 va_list args2;