Skip to content
Snippets Groups Projects
Commit a2dfd37b authored by Pea Nut's avatar Pea Nut Committed by jkito
Browse files

Fix log message that logs whitelisted gateway ip in firewall

Having a space in Str() is supoptimal:
> DBG Allowd gateway IP gateway ip: =51.158.144.32
parent 3b24fc3a
No related branches found
No related tags found
1 merge request!228[bitmask-root] Don't redirect udp/53 traffic to vpn gateways
......@@ -203,7 +203,9 @@ func (l *Launcher) FirewallStart(gateways []bonafide.Gateway) error {
}
for _, gw := range gateways {
log.Debug().Str("gateway ip: ", gw.IPAddress).Msg("Allowd gateway IP")
log.Debug().
Str("gatewayIP", gw.IPAddress).
Msg("Whitelisting gateway ip in firewall")
}
if os.Getenv("LEAP_DRYRUN") == "1" {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment