Skip to content
Snippets Groups Projects
Commit 6200683c authored by Pierre Tessier's avatar Pierre Tessier Committed by Daniel Nelson
Browse files

Remove noisy debug message from Wavefront output (#3899)

parent 76ce71f7
No related branches found
No related tags found
No related merge requests found
......@@ -126,7 +126,6 @@ func (w *Wavefront) Write(metrics []telegraf.Metric) error {
for _, m := range metrics {
for _, metricPoint := range buildMetrics(m, w) {
metricLine := formatMetricPoint(metricPoint, w)
log.Printf("D! Output [wavefront] %s", metricLine)
_, err := connection.Write([]byte(metricLine))
if err != nil {
return fmt.Errorf("Wavefront: TCP writing error %s", err.Error())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment