summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-08-24 18:24:03 +0000
committerJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-08-25 10:51:04 +0000
commit8aec2239030827e676e5d32cf5e65fcfbd20d781 (patch)
tree3dc64360fb801f51ec6da238e3a5b6fedd0302e9
parent4114be66eedcfab9e34533d68930363f6349db62 (diff)
downloadmullvadvpn-8aec2239030827e676e5d32cf5e65fcfbd20d781.tar.xz
mullvadvpn-8aec2239030827e676e5d32cf5e65fcfbd20d781.zip
Add log message for development builds
-rw-r--r--mullvad-daemon/src/version_check.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/mullvad-daemon/src/version_check.rs b/mullvad-daemon/src/version_check.rs
index 8bc770f777..6092c5b0de 100644
--- a/mullvad-daemon/src/version_check.rs
+++ b/mullvad-daemon/src/version_check.rs
@@ -224,6 +224,7 @@ impl VersionUpdater {
// If this is a dev build ,there's no need to pester the API for version checks.
if *IS_DEV_BUILD {
+ log::warn!("Not checking for updates because this is a development build");
while let Some(_) = rx.next().await {}
return;
}