Change log level when correction not found

This commit is contained in:
samuelbles07
2025-03-31 14:07:30 +07:00
parent decdecdf22
commit 7fbab82088

View File

@@ -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;
}