Commit 65d8403a by bergquist

fix(metrics_reporting): adds missing formating varialbe

parent a8ac37f5
......@@ -37,7 +37,7 @@ func (this *GraphiteSender) Send(metrics map[string]interface{}) error {
_, err = conn.Write(buf.Bytes())
if err != nil {
return fmt.Errorf("Graphite Sender: Failed to send metrics!", err)
return fmt.Errorf("Graphite Sender: Failed to send metrics! %s", err)
}
return nil
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment