From 536257ce255e051932dd630b7cdfa258ea4acf28 Mon Sep 17 00:00:00 2001 From: Manu Gupta Date: Sat, 22 Sep 2018 01:36:45 -0400 Subject: [PATCH] Change error log level to debug (#696) --- cmd/proxy/actions/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/proxy/actions/app.go b/cmd/proxy/actions/app.go index b1d76053..be149505 100644 --- a/cmd/proxy/actions/app.go +++ b/cmd/proxy/actions/app.go @@ -77,7 +77,7 @@ func App(conf *config.Config) (*buffalo.App, error) { // Register exporter to export traces exporter, err := observ.RegisterTraceExporter(conf.TraceExporterURL, Service, ENV) if err != nil { - lggr.SystemErr(err) + lggr.Infof("%s", err) } else { defer exporter.Flush() app.Use(observ.Tracer(Service))