summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2018-02-27 13:54:43 +0100
committerLinus Färnstrand <linus@mullvad.net>2018-03-02 20:44:08 +0100
commitd86b8fe348020dd21deb50f3c2d9b770c3c19174 (patch)
treeea14fd746fd6e8a990f01524bc1e2f0c2a6648f1
parent0081143e073f6c6f98e9299dba739fa458d9c21a (diff)
downloadmullvadvpn-d86b8fe348020dd21deb50f3c2d9b770c3c19174.tar.xz
mullvadvpn-d86b8fe348020dd21deb50f3c2d9b770c3c19174.zip
Adjust log levels in talpid-core
-rw-r--r--talpid-core/src/process/unix.rs2
-rw-r--r--talpid-core/src/tunnel/openvpn.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/talpid-core/src/process/unix.rs b/talpid-core/src/process/unix.rs
index 189945257d..4dea0f5a79 100644
--- a/talpid-core/src/process/unix.rs
+++ b/talpid-core/src/process/unix.rs
@@ -25,7 +25,7 @@ impl HandleKillExt for duct::Handle {
debug!("Child process exited from SIGTERM");
Ok(())
} else {
- debug!("Child process did not exit from SIGTERM, sending SIGKILL");
+ warn!("Child process did not exit from SIGTERM, sending SIGKILL");
self.kill()
}
}
diff --git a/talpid-core/src/tunnel/openvpn.rs b/talpid-core/src/tunnel/openvpn.rs
index ded4ff2d34..5aa5a298a3 100644
--- a/talpid-core/src/tunnel/openvpn.rs
+++ b/talpid-core/src/tunnel/openvpn.rs
@@ -262,7 +262,7 @@ mod event_server {
event: OpenVpnPluginEvent,
env: HashMap<String, String>,
) -> Result<(), Error> {
- debug!("OpenVPN event {:?}", event);
+ trace!("OpenVPN event {:?}", event);
(self.on_event)(event, env);
Ok(())
}