ipn/ipnlocal: replace log.Printf with logf (#18045)

Updates #cleanup

Signed-off-by: Simon Law <sfllaw@tailscale.com>
This commit is contained in:
Simon Law
2025-11-24 17:42:58 -08:00
committed by GitHub
parent 7426eca163
commit 9c3a2aa797
2 changed files with 15 additions and 9 deletions
+4 -1
View File
@@ -5590,7 +5590,10 @@ func TestFillAllowedSuggestions(t *testing.T) {
var pol policytest.Config
pol.Set(pkey.AllowedSuggestedExitNodes, tt.allowPolicy)
got := fillAllowedSuggestions(pol)
got, err := fillAllowedSuggestions(pol)
if err != nil {
t.Fatal(err)
}
if got == nil {
if tt.want == nil {
return