mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-03 14:55:47 +00:00
logpolicy: set log target using an environment variable
Signed-off-by: Christine Dodrill <xe@tailscale.com>
This commit is contained in:
parent
a905ce5607
commit
187fc6f1c5
@ -387,6 +387,11 @@ func New(collection string) *Policy {
|
|||||||
HTTPC: &http.Client{Transport: newLogtailTransport(logtail.DefaultHost)},
|
HTTPC: &http.Client{Transport: newLogtailTransport(logtail.DefaultHost)},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if val, ok := os.LookupEnv("TAILSCALE_LOG_TARGET_DO_NOT_SET_UNLESS_TOLD_TO"); 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
|
||||||
|
}
|
||||||
|
|
||||||
filchBuf, filchErr := filch.New(filepath.Join(dir, cmdName), filch.Options{})
|
filchBuf, filchErr := filch.New(filepath.Join(dir, cmdName), filch.Options{})
|
||||||
if filchBuf != nil {
|
if filchBuf != nil {
|
||||||
c.Buffer = filchBuf
|
c.Buffer = filchBuf
|
||||||
|
Loading…
x
Reference in New Issue
Block a user