From 5ba3b3b309860d6f26a3aa76cb225edc5c6961c1 Mon Sep 17 00:00:00 2001 From: Nuno Diegues Date: Fri, 19 Feb 2021 10:53:43 +0000 Subject: [PATCH] TUN-3939: Add logging that shows that Warp-routing is enabled --- cmd/cloudflared/tunnel/configuration.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/cloudflared/tunnel/configuration.go b/cmd/cloudflared/tunnel/configuration.go index 9bf43d25..97e455ee 100644 --- a/cmd/cloudflared/tunnel/configuration.go +++ b/cmd/cloudflared/tunnel/configuration.go @@ -235,6 +235,7 @@ func prepareTunnelConfig( warpRoutingEnabled := isWarpRoutingEnabled(cfg.WarpRouting, isNamedTunnel) if warpRoutingEnabled { warpRoutingService = ingress.NewWarpRoutingService() + log.Info().Msgf("Warp-routing is enabled") } protocolSelector, err := connection.NewProtocolSelector(c.String("protocol"), warpRoutingEnabled, namedTunnel, edgediscovery.HTTP2Percentage, origin.ResolveTTL, log)