replacing useless warnings by lInfo

This commit is contained in:
Gaelle Braud 2026-03-18 17:16:42 +01:00
parent 1019d95286
commit 323bb83b6e
3 changed files with 3 additions and 3 deletions

View file

@ -148,7 +148,7 @@ bool DownloadablePayloadTypeCore::shouldDownloadUpdate() {
QFile versionFile(versionFilePath);
if (!versionFile.exists() && !QFileInfo::exists(codecsFolder + mInstallName)) {
lWarning() << log().arg("Codec `%1` is not installed.").arg(versionFilePath);
lInfo() << log().arg("Codec `%1` is not installed.").arg(versionFilePath);
return false;
}
if (!versionFile.open(QIODevice::ReadOnly)) {

View file

@ -389,7 +389,7 @@ void CoreModel::checkForUpdate(const std::string &applicationVersion, bool reque
lInfo() << log().arg("Checking for update for version") << applicationVersion;
getCore()->checkForUpdate(applicationVersion);
} else {
lWarning() << log().arg("Check for update settings is not set");
lInfo() << log().arg("Check for update settings is not set");
}
}

View file

@ -574,7 +574,7 @@ void ToolModel::loadDownloadedCodecs() {
lWarning() << QStringLiteral("[ToolModel] Failed to load `%1` symbols.").arg(filename)
<< library.errorString();
else lInfo() << QStringLiteral("[ToolModel] Loaded `%1` symbols…").arg(filename);
} else lWarning() << QStringLiteral("[ToolModel] Found codec file `%1` that is not a library").arg(filename);
} else lInfo() << QStringLiteral("[ToolModel] Found codec file `%1` that is not a library").arg(filename);
}
CoreModel::getInstance()->getCore()->reloadMsPlugins("");
qInfo() << QStringLiteral("Finished loading downloaded codecs.");