Demote log level

This commit is contained in:
Michael Vines 2018-07-14 20:28:56 -07:00
parent cfb3736372
commit 94d015b089
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ impl InfluxDbMetricsWriter {
impl MetricsWriter for InfluxDbMetricsWriter {
fn write(&self, points: Vec<influxdb::Point>) {
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),