mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-23 17:31:43 +00:00
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:
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…
x
Reference in New Issue
Block a user