mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-18 04:38:29 +00:00
replacing useless warnings by lInfo
This commit is contained in:
parent
8c7ddd2a14
commit
0de5964883
3 changed files with 3 additions and 3 deletions
|
|
@ -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)) {
|
||||
|
|
|
|||
|
|
@ -385,7 +385,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");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -583,7 +583,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.");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue