diff --git a/Linphone/core/payload-type/DownloadablePayloadTypeCore.cpp b/Linphone/core/payload-type/DownloadablePayloadTypeCore.cpp index 28dc708e9..d85ff7c9d 100644 --- a/Linphone/core/payload-type/DownloadablePayloadTypeCore.cpp +++ b/Linphone/core/payload-type/DownloadablePayloadTypeCore.cpp @@ -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)) { diff --git a/Linphone/model/core/CoreModel.cpp b/Linphone/model/core/CoreModel.cpp index f221bf707..75091aba0 100644 --- a/Linphone/model/core/CoreModel.cpp +++ b/Linphone/model/core/CoreModel.cpp @@ -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"); } } diff --git a/Linphone/model/tool/ToolModel.cpp b/Linphone/model/tool/ToolModel.cpp index 4b857b448..e8eb28604 100644 --- a/Linphone/model/tool/ToolModel.cpp +++ b/Linphone/model/tool/ToolModel.cpp @@ -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.");