From 392dca78cda0f2950a7468882dc0e08539c539ee Mon Sep 17 00:00:00 2001 From: Kegan Dougal Date: Wed, 15 Apr 2020 15:22:53 +0100 Subject: [PATCH] False is true and true is false --- common/httpapi.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/httpapi.go b/common/httpapi.go index f3765d204..65037e29e 100644 --- a/common/httpapi.go +++ b/common/httpapi.go @@ -46,7 +46,7 @@ func MakeAuthAPI( func MakeExternalAPI(metricsName string, f func(*http.Request) util.JSONResponse) http.Handler { // TODO: We shouldn't be directly reading env vars here, inject it in instead. // Refactor this when we split out config structs. - verbose := true + verbose := false if os.Getenv("DENDRITE_TRACE_HTTP") == "1" { verbose = true }