fix(health): log link to Wiki on VPN restart

This commit is contained in:
Quentin McGaw
2023-03-25 15:09:13 +00:00
parent cbd8711a21
commit fe97e28461
2 changed files with 4 additions and 2 deletions

View File

@@ -15,7 +15,8 @@ type vpnHealth struct {
func (s *Server) onUnhealthyVPN(ctx context.Context) {
s.logger.Info("program has been unhealthy for " +
s.vpn.healthyWait.String() + ": restarting VPN")
s.vpn.healthyWait.String() + ": restarting VPN " +
"(see https://github.com/qdm12/gluetun/wiki/Healthcheck)")
_, _ = s.vpn.loop.ApplyStatus(ctx, constants.Stopped)
_, _ = s.vpn.loop.ApplyStatus(ctx, constants.Running)
s.vpn.healthyWait += *s.config.VPN.Addition