From e61fb57899335a17da8a284559f32975aeec4f75 Mon Sep 17 00:00:00 2001 From: Geoffrey Merck Date: Wed, 20 Aug 2025 20:24:58 +0200 Subject: [PATCH] fix typo #59 --- DStarGateway/DStarGatewayConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DStarGateway/DStarGatewayConfig.cpp b/DStarGateway/DStarGatewayConfig.cpp index 067eb39..b30bc71 100644 --- a/DStarGateway/DStarGatewayConfig.cpp +++ b/DStarGateway/DStarGatewayConfig.cpp @@ -185,7 +185,7 @@ bool CDStarGatewayConfig::loadLog(const CConfig & cfg) else if(levelStr == "none") m_log.displayLevel = LOG_NONE; } - ret = cfg.getValue("log", "logtraffic", m_log.logIRCDDBTraffic, false) && ret; + ret = cfg.getValue("log", "logIRCDDBTraffic", m_log.logIRCDDBTraffic, false) && ret; std::string thresholdStr; ret = cfg.getValue("log", "repeatthreshold", thresholdStr, "2", {"disabled", "1", "2", "3", "4","5", "6", "7", "8", "9", "10"}) && ret;