From ed248b04a7217e8f558a18726610defa2d44f0b7 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Mon, 19 Sep 2022 21:06:37 -0700 Subject: [PATCH] cmd/tailscale: remove leftover debug prints from earlier commit From 6632504f452 Change-Id: If21789232b3ecc14c1639cf87814af6fa73f535f Signed-off-by: Brad Fitzpatrick --- cmd/tailscale/cli/up.go | 1 - 1 file changed, 1 deletion(-) diff --git a/cmd/tailscale/cli/up.go b/cmd/tailscale/cli/up.go index bb081a27b..d93058956 100644 --- a/cmd/tailscale/cli/up.go +++ b/cmd/tailscale/cli/up.go @@ -380,7 +380,6 @@ func updatePrefs(prefs, curPrefs *ipn.Prefs, env upCheckEnv) (simpleUp bool, jus // Do this after validations to avoid the 5s delay if we're going to error // out anyway. wantSSH, haveSSH := env.upArgs.runSSH, curPrefs.RunSSH - fmt.Println("wantSSH", wantSSH, "haveSSH", haveSSH) if wantSSH != haveSSH && isSSHOverTailscale() { if wantSSH { err = presentRiskToUser(riskLoseSSH, `You are connected over Tailscale; this action will reroute SSH traffic to Tailscale SSH and will result in your session disconnecting.`, env.upArgs.acceptedRisks)