diff --git a/src/metrics.rs b/src/metrics.rs index c502722ae9..69b5737380 100644 --- a/src/metrics.rs +++ b/src/metrics.rs @@ -57,7 +57,7 @@ impl InfluxDbMetricsWriter { impl MetricsWriter for InfluxDbMetricsWriter { fn write(&self, points: Vec) { if let Some(ref client) = self.client { - info!("submitting {} points", points.len()); + debug!("submitting {} points", points.len()); if let Err(err) = client.write_points( influxdb::Points { point: points }, Some(influxdb::Precision::Milliseconds),