tstest/integration/nat: make Tailscale status log print less spammy

No need to print all the internal fields. We only care about the BackendState.

Updates #13038

Change-Id: Iaa0e47ade3c6d30e1887ab1e2a7412ed4e0dab7d
pull/13131/head
Brad Fitzpatrick 3 months ago committed by Brad Fitzpatrick
parent eae6a00651
commit b26c53368d

@ -301,7 +301,7 @@ func (nt *natTest) runTest(node1, node2 addNodeFunc) pingRoute {
if err != nil {
return fmt.Errorf("%v status: %w", node, err)
}
t.Logf("%v status: %v", node, st)
t.Logf("%v status: %v", node, st.BackendState)
if node.HostFirewall() {
if err := c.EnableHostFirewall(ctx); err != nil {

Loading…
Cancel
Save