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.reviewable/pr517/r2
parent
e03cc2ef57
commit
6233fd7ac3
|
@ -387,7 +387,7 @@ func (c *Direct) doLogin(ctx context.Context, t *oauth2.Token, flags LoginFlags,
|
||||||
// - user is disabled
|
// - user is disabled
|
||||||
|
|
||||||
if resp.AuthURL != "" {
|
if resp.AuthURL != "" {
|
||||||
c.logf("AuthURL is %.20v...", resp.AuthURL)
|
c.logf("AuthURL is %v", resp.AuthURL)
|
||||||
} else {
|
} else {
|
||||||
c.logf("No AuthURL")
|
c.logf("No AuthURL")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue