From ed804e2df2fe66c3bcb60a2f04ab839eff842004 Mon Sep 17 00:00:00 2001 From: Jason Collins Date: Tue, 4 May 2021 15:54:52 -0700 Subject: [PATCH] INT - update log level of usage event --- pkg/transaction/metric/metricspublisher.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/transaction/metric/metricspublisher.go b/pkg/transaction/metric/metricspublisher.go index b0b1b7a71..cbfa8f40d 100644 --- a/pkg/transaction/metric/metricspublisher.go +++ b/pkg/transaction/metric/metricspublisher.go @@ -77,7 +77,7 @@ func (pj *publisher) publishToLighthouse(event LighthouseUsageEvent) { Headers: headers, Body: b.Bytes(), } - log.Infof("Payload for Usage event : %s\n", string(b.Bytes())) + log.Debugf("Payload for Usage event : %s\n", string(b.Bytes())) response, err := pj.apiClient.Send(request) if err != nil { log.Error("Error in sending usage/metric event: ", err.Error())