summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-04-16 21:08:04 +0000
committerJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-04-22 13:46:50 +0000
commit43afcc304b291d72b2203efa8baeb74a896ef727 (patch)
tree170f49eef7d2afc275b1cf62e5c2383c1a938e8f
parent7ce32baa017763e4065a7810e329f80ebff774fc (diff)
downloadmullvadvpn-43afcc304b291d72b2203efa8baeb74a896ef727.tar.xz
mullvadvpn-43afcc304b291d72b2203efa8baeb74a896ef727.zip
Change log output from `error` to `info`
-rw-r--r--mullvad-daemon/src/settings.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mullvad-daemon/src/settings.rs b/mullvad-daemon/src/settings.rs
index a860acc32b..daf3225913 100644
--- a/mullvad-daemon/src/settings.rs
+++ b/mullvad-daemon/src/settings.rs
@@ -179,7 +179,7 @@ impl SettingsPersister {
"{}",
e.display_chain_with_msg("Unable to save default settings")
);
- log::error!("Will attempt to remove settings file");
+ log::info!("Will attempt to remove settings file");
fs::remove_file(&self.path)
.map_err(|e| Error::DeleteError(self.path.display().to_string(), e))
})