diff --git a/core/src/main/java/bisq/core/app/misc/ExecutableForAppWithP2p.java b/core/src/main/java/bisq/core/app/misc/ExecutableForAppWithP2p.java index 1a9be3e474..a48dd4384b 100644 --- a/core/src/main/java/bisq/core/app/misc/ExecutableForAppWithP2p.java +++ b/core/src/main/java/bisq/core/app/misc/ExecutableForAppWithP2p.java @@ -47,7 +47,7 @@ import lombok.extern.slf4j.Slf4j; @Slf4j public abstract class ExecutableForAppWithP2p extends BisqExecutable implements UncaughtExceptionHandler { private static final long MAX_MEMORY_MB_DEFAULT = 500; - private static final long CHECK_MEMORY_PERIOD_SEC = 2 * 60; + private static final long CHECK_MEMORY_PERIOD_SEC = 10; private volatile boolean stopped; private static long maxMemory = MAX_MEMORY_MB_DEFAULT; @@ -145,7 +145,7 @@ public abstract class ExecutableForAppWithP2p extends BisqExecutable implements } UserThread.runAfter(() -> { - log.warn("Memory 2 sec. after calling the GC. usedMemory: {} MB. freeMemory: {} MB", + log.info("Memory 2 sec. after calling the GC. usedMemory: {} MB. freeMemory: {} MB", Profiler.getUsedMemoryInMB(), Profiler.getFreeMemoryInMB()); }, 2);