From 7fbab82088f47bbedeb94d50c22678b0fbc94b9e Mon Sep 17 00:00:00 2001 From: samuelbles07 Date: Mon, 31 Mar 2025 14:07:30 +0700 Subject: [PATCH] Change log level when correction not found --- src/AgConfigure.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AgConfigure.cpp b/src/AgConfigure.cpp index d2b6e81..37645d6 100644 --- a/src/AgConfigure.cpp +++ b/src/AgConfigure.cpp @@ -240,7 +240,7 @@ bool Configuration::updateTempHumCorrection(JSONVar &json, TempHumCorrection &ta JSONVar corrections = json[jprop_corrections]; if (!corrections.hasOwnProperty(correctionName)) { - logWarning(String(correctionName) + " correction field not found on configuration"); + logInfo(String(correctionName) + " correction field not found on configuration"); return false; }