summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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(())
}