Update configuration log mesasge

This commit is contained in:
Phat Nguyen
2024-05-15 17:20:10 +07:00
parent a71c038864
commit f55fa6a617

View File

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