From 0f3becc95aea7e7e0490a2bd8b826db2a2f3da89 Mon Sep 17 00:00:00 2001 From: JCW Date: Wed, 3 Sep 2025 16:36:27 +0100 Subject: [PATCH] Hardcode the logstyle as json Signed-off-by: JCW --- src/xrpld/core/detail/Config.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/xrpld/core/detail/Config.cpp b/src/xrpld/core/detail/Config.cpp index 7eb3a68a46..7a5301389e 100644 --- a/src/xrpld/core/detail/Config.cpp +++ b/src/xrpld/core/detail/Config.cpp @@ -693,6 +693,8 @@ Config::loadFromString(std::string const& fileContents) if (getSingleSection(secConfig, SECTION_LOG_STYLE, strTemp, j_)) LOG_STYLE = LogStyle::fromString(strTemp); + LOG_STYLE = LogStyle::Json; + if (getSingleSection(secConfig, SECTION_SWEEP_INTERVAL, strTemp, j_)) { SWEEP_INTERVAL = beast::lexicalCastThrow(strTemp);