control/controlclient: don't truncate AuthURL in log

It's useful to copy/paste directly from there, without using tailscale up.
If it's truncated for some specific reason, it doesn't say why.
This commit is contained in:
Brad Fitzpatrick 2020-07-02 09:45:08 -07:00
parent e03cc2ef57
commit 6233fd7ac3
1 changed files with 1 additions and 1 deletions

View File

@ -387,7 +387,7 @@ func (c *Direct) doLogin(ctx context.Context, t *oauth2.Token, flags LoginFlags,
// - user is disabled
if resp.AuthURL != "" {
c.logf("AuthURL is %.20v...", resp.AuthURL)
c.logf("AuthURL is %v", resp.AuthURL)
} else {
c.logf("No AuthURL")
}