Migration fix (#3900)

* Update main.cpp

During migration, the messages was issued as errors, although this should be information/should serve for information.

* Update main.cpp

* Update Helper.cpp
This commit is contained in:
SybexXx
2025-09-02 22:06:07 +02:00
committed by GitHub
parent 73afc07652
commit ba03a7dc38
2 changed files with 6 additions and 6 deletions

View File

@@ -1248,7 +1248,7 @@ bool replaceString(std::string &s, std::string const &toReplace, std::string con
if (logIt)
{
LogFile.WriteToFile(ESP_LOG_ERROR, TAG, "Migrated Configfile line '" + old + "' to '" + s + "'");
LogFile.WriteToFile(ESP_LOG_INFO, TAG, "Migrated Configfile line '" + old + "' to '" + s + "'");
}
return true;