From f55fa6a6179ce7c944cc62042f44535fc96a6a37 Mon Sep 17 00:00:00 2001 From: Phat Nguyen Date: Wed, 15 May 2024 17:20:10 +0700 Subject: [PATCH] Update configuration log mesasge --- src/AgConfigure.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AgConfigure.cpp b/src/AgConfigure.cpp index bff679b..9127e45 100644 --- a/src/AgConfigure.cpp +++ b/src/AgConfigure.cpp @@ -617,7 +617,7 @@ bool Configuration::parse(String data, bool isLocal) { String newVer = root["targetFirmware"]; String curVer = String(GIT_VERSION); if (curVer != newVer) { - logInfo("Detected new firwmare version: " + newVer); + logInfo("Detected new firmware version: " + newVer); otaNewFirmwareVersion = newVer; udpated = true; } else { @@ -630,7 +630,7 @@ bool Configuration::parse(String data, bool isLocal) { saveConfig(); printConfig(); } else { - logInfo("Nothing changed ignore udpate"); + logInfo("Update ignored due to local unofficial changes"); if (ledBarTestRequested || co2CalibrationRequested) { udpated = true; }