summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp5
-rw-r--r--src/selfupdater.cpp2
2 files changed, 5 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index b6b25dd7..2bb3f964 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -298,7 +298,10 @@ MOBase::IPluginGame *determineCurrentGame(
if (gameConfigured) {
MOBase::IPluginGame *game = plugins.managedGame(*gameName);
if (game == nullptr) {
- reportError(QObject::tr("Plugin to handle %1 no longer installed").arg(*gameName));
+ reportError(
+ QObject::tr("Plugin to handle %1 no longer installed. An antivirus might have deleted files.")
+ .arg(*gameName));
+
return nullptr;
}
diff --git a/src/selfupdater.cpp b/src/selfupdater.cpp
index 5a70568e..086ae05f 100644
--- a/src/selfupdater.cpp
+++ b/src/selfupdater.cpp
@@ -160,7 +160,7 @@ void SelfUpdater::testForUpdate(const Settings& settings)
VersionInfo newestVer(newest["tag_name"].toString());
if (newestVer > this->m_MOVersion) {
m_UpdateCandidate = newest;
- log::debug("update available: {} -> {}",
+ log::info("update available: {} -> {}",
this->m_MOVersion.displayString(3),
newestVer.displayString(3));
emit updateAvailable();