Demote log level
This commit is contained in:
@ -57,7 +57,7 @@ impl InfluxDbMetricsWriter {
|
|||||||
impl MetricsWriter for InfluxDbMetricsWriter {
|
impl MetricsWriter for InfluxDbMetricsWriter {
|
||||||
fn write(&self, points: Vec<influxdb::Point>) {
|
fn write(&self, points: Vec<influxdb::Point>) {
|
||||||
if let Some(ref client) = self.client {
|
if let Some(ref client) = self.client {
|
||||||
info!("submitting {} points", points.len());
|
debug!("submitting {} points", points.len());
|
||||||
if let Err(err) = client.write_points(
|
if let Err(err) = client.write_points(
|
||||||
influxdb::Points { point: points },
|
influxdb::Points { point: points },
|
||||||
Some(influxdb::Precision::Milliseconds),
|
Some(influxdb::Precision::Milliseconds),
|
||||||
|
Reference in New Issue
Block a user