summaryrefslogtreecommitdiff
path: root/src/selfupdater.cpp
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2020-04-17 09:31:59 -0400
committerisanae <14251494+isanae@users.noreply.github.com>2020-04-17 09:31:59 -0400
commite11ca50a57f1890eab160694ae9ee64f2f7096c8 (patch)
tree5a589005bf2380d3e2dd0cfa58e81beb4030f3b2 /src/selfupdater.cpp
parentd49f038d5dc813796f8ae4e6ac1631e09bf06bf3 (diff)
update available log is now info instead of debug
added AV warning when a game plugin is no longer available
Diffstat (limited to 'src/selfupdater.cpp')
-rw-r--r--src/selfupdater.cpp2
1 files changed, 1 insertions, 1 deletions
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();