From 075ec1cf98b144f6cea0c109461f7d14a47ddebb Mon Sep 17 00:00:00 2001 From: Flyinghead Date: Thu, 12 Jan 2023 16:02:15 +0100 Subject: [PATCH] log: increase in-memory log to 20 lines --- core/log/InMemoryListener.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/log/InMemoryListener.h b/core/log/InMemoryListener.h index 5e67288c8..983317bf7 100644 --- a/core/log/InMemoryListener.h +++ b/core/log/InMemoryListener.h @@ -57,6 +57,6 @@ private: std::mutex mutex; std::deque lines; - static constexpr int MaxLines = 10; + static constexpr int MaxLines = 20; static InMemoryListener *instance; };