From b26c53368df3c5d87556f601d701fdd8afe46bab Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Tue, 13 Aug 2024 12:24:14 -0700 Subject: [PATCH] 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 --- tstest/integration/nat/nat_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tstest/integration/nat/nat_test.go b/tstest/integration/nat/nat_test.go index f631b5429..dfff7a4e1 100644 --- a/tstest/integration/nat/nat_test.go +++ b/tstest/integration/nat/nat_test.go @@ -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 {