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

log error from obfsvpn client when stopping

parent a98a9fbb
Branches
Tags
1 merge request!218Update to latest `obfsvpn`
......@@ -377,7 +377,9 @@ func (b *Bitmask) StopVPN() error {
return err
}
if b.obfsvpnProxy != nil {
b.obfsvpnProxy.Stop()
if _, err := b.obfsvpnProxy.Stop(); err != nil {
log.Debug().Err(err).Msg("Error while stop obfsvpn proxy")
}
b.obfsvpnProxy = nil
}
b.tryStopFromManagement()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment