Compare commits

...

1 Commits

Author SHA1 Message Date
Christine Dodrill b3754bfad1 logpolicy: rename target env var to TS_LOG_TARGET
Signed-Off-By: Christine Dodrill <xe@tailscale.com>
2021-02-04 12:29:33 -05:00
1 changed files with 1 additions and 1 deletions

View File

@ -388,7 +388,7 @@ func New(collection string) *Policy {
HTTPC: &http.Client{Transport: newLogtailTransport(logtail.DefaultHost)},
}
if val, ok := os.LookupEnv("TAILSCALE_LOG_TARGET"); ok {
if val, ok := os.LookupEnv("TS_LOG_TARGET"); ok {
log.Println("You have enabled a non-default log target. Doing without being told to by Tailscale staff or your network administrator will make getting support difficult.")
c.BaseURL = val
u, _ := url.Parse(val)