HTTP reverse proxy for Tailscale

fix "upstream error" log line to include the upstream

+1 -1
+1 -1
tsproxy.go
··· 243 243 } 244 244 proxy.ErrorHandler = func(w http.ResponseWriter, _ *http.Request, err error) { 245 245 http.Error(w, http.StatusText(http.StatusBadGateway), http.StatusBadGateway) 246 - logger.Error("upstream error", lerr(err)) 246 + log.Error("upstream error", lerr(err)) 247 247 } 248 248 249 249 instrument := func(h http.Handler) http.Handler {