diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2017-03-07 09:58:55 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2017-03-07 09:58:55 +0100 |
| commit | 3af0e735feaf6b4d52af9603141b84392037bbb1 (patch) | |
| tree | 13e02cee19b61d76e37eb62f26ef01c692bd320f /src/process | |
| parent | e8ac125488e40fc8ae3ca9e0920b1b7fe09980d7 (diff) | |
| download | mullvadvpn-3af0e735feaf6b4d52af9603141b84392037bbb1.tar.xz mullvadvpn-3af0e735feaf6b4d52af9603141b84392037bbb1.zip | |
Adding logging to talpid_core
Diffstat (limited to 'src/process')
| -rw-r--r-- | src/process/openvpn.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/process/openvpn.rs b/src/process/openvpn.rs index b533b32b67..48da508f75 100644 --- a/src/process/openvpn.rs +++ b/src/process/openvpn.rs @@ -84,6 +84,7 @@ impl OpenVpnCommand { let mut command = self.create_command(); let args = self.get_arguments(); command.args(&args); + debug!("Spawning: {}", &self); command.spawn() } |
