Skip to content
Snippets Groups Projects
Commit 59c01d8d authored by jkito's avatar jkito :skull: Committed by jkito
Browse files

log error from launcher when stopping openvpn process

parent 24cc9303
No related branches found
No related tags found
1 merge request!218Update to latest `obfsvpn`
......@@ -383,7 +383,9 @@ func (b *Bitmask) StopVPN() error {
b.obfsvpnProxy = nil
}
b.tryStopFromManagement()
b.launch.OpenvpnStop()
if err := b.launch.OpenvpnStop(); err != nil {
log.Debug().Err(err).Msg("Error while stop obfsvpn proxy")
}
return nil
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment