From 25214076d840a27bd7d894a944acd92bea9838d3 Mon Sep 17 00:00:00 2001 From: Alexander Bondarenko <486682+dpwiz@users.noreply.github.com> Date: Tue, 5 Mar 2024 16:54:59 +0200 Subject: [PATCH] fix eventlog name --- .../common/src/commonMain/cpp/desktop/simplex-api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/multiplatform/common/src/commonMain/cpp/desktop/simplex-api.c b/apps/multiplatform/common/src/commonMain/cpp/desktop/simplex-api.c index 40a30efdcd..efae2b6588 100644 --- a/apps/multiplatform/common/src/commonMain/cpp/desktop/simplex-api.c +++ b/apps/multiplatform/common/src/commonMain/cpp/desktop/simplex-api.c @@ -20,7 +20,7 @@ Java_chat_simplex_common_platform_CoreKt_initHS(JNIEnv *env, jclass clazz) { argv[argc++] = "-M8G"; // keep memory usage under 8G, collecting more aggressively when approaching it (and crashing sooner rather than taking down the whole system) int eventlog = 1; // TODO: geto option flag from app (pointer for -ol?) if (eventlog) { - argv[argc++] = "-olsimplex.eeventlog"; // produce simplex.eventlog in "current" directory + argv[argc++] = "-olsimplex.eventlog"; // produce simplex.eventlog in "current" directory argv[argc++] = "-l-agu"; // collect GC and user events } int profiling = 1; // TODO: get option flag from app (pointer for -po?)