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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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();