reduce metric write log level (#23966)

This commit is contained in:
HaoranYi
2022-03-29 12:00:42 -05:00
committed by GitHub
parent 7ef18f220a
commit ac8b662413

View File

@ -80,7 +80,7 @@ impl InfluxDbMetricsWriter {
impl MetricsWriter for InfluxDbMetricsWriter {
fn write(&self, points: Vec<DataPoint>) {
if let Some(ref write_url) = self.write_url {
info!("submitting {} points", points.len());
debug!("submitting {} points", points.len());
let host_id = HOST_ID.read().unwrap();