summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--ipn/local.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/ipn/local.go b/ipn/local.go
index 7e2c60909..d3d847776 100644
--- a/ipn/local.go
+++ b/ipn/local.go
@@ -429,6 +429,10 @@ func (b *LocalBackend) Start(opts Options) error {
return fmt.Errorf("loading requested state: %v", err)
}
+ if b.prefs.LogServer == "" {
+ b.prefs.LogServer = "https://log.tailscale.io"
+ }
+ os.Setenv("TAILSCALE_LOG_TARGET", b.prefs.LogServer)
b.inServerMode = b.prefs.ForceDaemon
b.serverURL = b.prefs.ControlURL
hostinfo.RoutableIPs = append(hostinfo.RoutableIPs, b.prefs.AdvertiseRoutes...)